我在我的angular控制器中有一个函数,我希望这个函数在文档就绪时运行,但我注意到angular在创建dom时运行它。
function myController($scope)
{
$scope.init = function()
{
// I'd like to run this on document ready
}
$scope.init(); // doesn't work, loads my init before the page has completely loaded
}
有人知道我该怎么做吗?
我有一个类似的情况,我需要在视图加载后执行一个控制器函数,也在视图中特定的第三方组件被加载,初始化,并在$scope上放置了对自身的引用。最终对我有用的是在这个scope属性上设置一个手表,并在初始化后才启动我的函数。
// $scope.myGrid property will be created by the grid itself
// The grid will have a loadedRows property once initialized
$scope.$watch('myGrid', function(newValue, oldValue) {
if (newValue && newValue.loadedRows && !oldValue) {
initializeAllTheGridThings();
}
});
使用未定义的值调用监视程序几次。然后,当网格创建并具有预期的属性时,可以安全地调用初始化函数。第一次使用非未定义的newValue调用观察者时,oldValue仍然是未定义的。