使用ng-view时,AngularJS document.ready不起作用

时间:2013-07-30 11:05:05

标签: javascript angularjs

在我的应用中的多个路线之间导航时,我在angularJS中遇到了document.ready的问题。它只适用于我使用ctrl + f5(页面重新加载);它似乎在页面之间导航不会改变文档的状态以备就绪。

控制器

  angular.element(document).ready(function() {
    window.scrollTo(0,90);
});

主要html文件

<!DOCTYPE html >
<html ng-app="myApp">
    <head>
        <meta http-equiv="content-type" content="text/html;charset=utf-8" />
        <title></title>
    </head>
    <body>
        <div class="container">
            <div ng-view></div>
        </div>
    </body>
</html>

app文件

var mainModule = angular.module('myApp', ['ui.bootstrap.dialog']);
function viewServiceConfig($routeProvider) {
$routeProvider.
    when('/', {
        controller: SomeController,
        templateUrl: 'somehtml.html'
    }).



    when('/someroute', {
        controller: SomeRouteController,
        templateUrl: 'someroutehtml.html'
    }).


    otherwise({
        redirectTo: '/'
    });
}

mainModule.config(viewServiceConfig);

3 个答案:

答案 0 :(得分:40)

您可以收听路线中定义的控制器,例如SomeControllerSomeRouteController $viewContentLoaded event。每次重新加载ngView内容时都会发出$viewContentLoaded,并且在angularjs中路由时应提供与document.ready类似的功能:

function SomeController($scope) {
   $scope.$on('$viewContentLoaded', function() {window.scrollTo(0,90);});
}

加载document.ready时,index.html也只会触发一次。当加载路由配置中定义的部分模板时,不会触发它。

答案 1 :(得分:6)

扩展@davekr的答案,我发现我需要添加$ timeout以确保摘要已完成并且html元素可用于查询:

function SomeController($scope) {
    $scope.$on('$viewContentLoaded', function() {
        $timeout(function(){
            //Do your stuff
        });
    });
}

我尝试了很多其他事件,这是唯一可行的方法。

答案 2 :(得分:4)

我能够通过Dave的答案并使用routeChangeSuccess

来应用滚动事件
function SomeController($scope) {
    $scope.$on('$routeChangeSuccess', function() {window.scrollTo(0,90);});
}