AngularJS 路由 resolve用法

ng-route模块中的when()和ui-route的state()都提供了resolve属性。 
为什么需要使用resolve? 
当路由切换的时候,被路由的页面中的元素(标签)就会立马显示出来,同时,数据会被准备好并呈现出来。但是注意,数据和元素并不是同步的,在没有任何设置的情况下,AngularJS默认先呈现出元素,而后再呈现出数据。这样就会导致页面会被渲染两遍,导致“页面UI抖动”的问题,对用户不太友好。resolve的出现解决了这个问题。 
resolve是干嘛用的 
resolve属性里的值会在路由成功前被预先设定好,然后注入到控制器中。通俗地将,就是等数据都“就位”后,才进行路由(其实我觉得也不能叫路由,因为路由是一些列的操作,其中就包括了设置resolve属性等等)。这样的好处就是页面仅会被渲染一遍。

<!--首页.html-->
<div ng-app="myApp">
<div><a ui-sref = "index">前往list.html</a></div>
<div ui-view></div><!--这里是路由视图存放的地方-->
</div>
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5
<!--list.html>
<div>
    <h1>HI,这里是list.html</h1>
    <a ui-sref="index.list">点击加载list.html视图</a>
    <div ui-view></div>
    <h1>{{user}}</h1>
    <h2>{{name}}</h2>
    <h3>{{age}}</h3>
    <h3>{{email}}</h3>
</div>
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
//JS
var app = angular.module('myApp',['ui.router']);
app.config(["$stateProvider",function($stateProvider){
    $stateProvider
        .state("index",{
            url:'/',
            templateUrl:'list.html',
            controller:'myController',
            resolve:{
                user:function(){
                    return {
                        name:"perter",
                        email:"826415551@qq.com",
                        age:"18"
                    }
                }
            }
        })
}]);
app.controller('myController',function($scope,user){
    $scope.name=user.name;
    $scope.age=user.age;
    $scope.email=user.email;
    $scope.user=user;
});
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

我在state方法里面设置了resolve属性,里面的值是一个名为user的对象,它存有几个值(格式好像JSON)。并把这个user变量注入到控制器中。这样就完成了预加载了。 
这种把resolve属性的值(这里是user)注入到控制器的方式有一个非常强大的地方就是,可以运用他来重用控制器,而我们需要做的仅仅只是改变user对象里面的值(tips:如果是嵌套路由的话,不重新设置resolve值则会“继承”父路由的resolve值,如果不是嵌套路由且不重新设置,则不会正确显示)。

<!--list.html-->
<div>
    <h1>HI,这里是list.html</h1>
    <a ui-sref="index.list">点击加载list.html视图</a>
    <a ui-sref="index.list2">点击加载list2.html视图</a>
    <div ui-view></div>
    <h1>{{user}}</h1>
    <h2>{{name}}</h2>
    <h3>{{age}}</h3>
    <h3>{{email}}</h3>
</div>
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
//js
var app = angular.module('myApp',['ui.router']);
app.config(["$stateProvider",function($stateProvider){
    $stateProvider
        .state("index",{
            url:'/',
            templateUrl:'list.html',
            controller:'myController',
            resolve:{
                user:function(){
                    return {
                        name:"perter",
                        email:"826415551@qq.com",
                        age:"18"
                    }
                }
            }
        })

        .state("index.list",{
            url:'/list',
            template:'<h1>{{name}}</h1>',
            controller:'myController',
        })
        .state("index.list2",{
            url:'/list2',
            template:'<h1>{{name}}</h1>',
            controller:'myController',
            resolve:{
                user:function () {
                    return{
                    name:"Rose"
                    }
                }
            }
        })

}]);
app.controller('myController',function($scope,user){
    $scope.name=user.name;
    $scope.age=user.age;
    $scope.email=user.email;
    $scope.user=user;
});
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44

这里省略了首页的html,可以翻到最上面看。重点对比最后的两个state(),可以发现第一个没有重新设置resolve属性,而第二个重新设置了resolve()属性。他们虽然共用了同一个控制器myController ,但是他们的值却不相同。 
这样,控制器的可维护性就会得到提高。

除此之外还可以借助$ocLazyLoad动态加载js、css,用法如下:

[javascript]  view plain  copy
  1. resolve: {  
  2.                 deps: ['$ocLazyLoad'function($ocLazyLoad) {  
  3.                     return $ocLazyLoad.load({  
  4.                         name: 'App',  
  5.                         insertBefore: '#ng_load_plugins_before',   
  6.                         files: [  
  7.                             'xx/js/controllers/xx.js'  
  8.                         ]  
  9.                     });  
  10.                 }],  
  11.                 showImgFiles: ['$ocLazyLoad'function($ocLazyLoad) {  
  12.                     return $ocLazyLoad.load([{  
  13.                         name: 'App',  
  14.                         insertBefore: '#ng_load_plugins_before',   
  15.                         files: [  
  16.                             'xx/xx/xx.css',  
  17.                             'xx/xx/xx.js'  
  18.                         ]  
  19.                     }]).then(function(){  
  20.                         //做些事情  
  21.                     });  
  22.                 }]  
  23.             }  

有一篇大神写的关于路由的文章,写的很详细,大家可以参考: http://www.cnblogs.com/lovesueee/p/4442509.html
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值