angularjs怎么加載頁面運行函數
angularjs怎么加載頁面運行函數?
慕碼人8056858
2018-11-22 23:15:19
TA貢獻1865條經驗 獲得超7個贊
var module = angular.module('testApp', []) .controller('myC',function(){ $scope.ta = [1,2,3,4,5,6]; }) .directive('onFinishRender', function () { return { restrict: 'A', link: function (scope, element, attr) { if (scope.$last
舉報