AngularJS相当新,但仍然试图找到我的脚。
当一个视图完成呈现模板时,我正试图弄清楚某个点。我在网上尝试了一切建议,但没有用。
基本上我希望能够在模板完全呈现角度时得到一个句柄,这样我就可以在那时调用jQuery插件。有人能指出我正确的方向吗?
my_app.config(function($routeProvider) {
$routeProvider.
when('/', {
templateUrl: '/templates/demo-details',
controller: 'DemoShowCtrl'
});
});
<div ng-view onload="alert('finally loaded');" class="container-fluid">
</div>
my_app.controller("DemoShowCtrl", function($scope,$rootScope, Demo) {
Demo.get({ id: 18875 }, function(data) {
$scope.deal = data;
});
$scope.$on('$viewContentLoaded ', alert('viewContentLoaded'));
$scope.$on('$routeChangeSuccess ', alert('routeChangeSuccess'));
$scope.$on('$destroy ', alert('destroy'));
$rootScope.$on('$viewContentLoaded ', alert('viewContentLoaded'));
$rootScope.$on('$routeChangeSuccess ', alert('routeChangeSuccess'));
$rootScope.$on('$destroy ', alert('destroy'));
//});
});