溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

詳解AngularJs路由之Ui-router-resolve(預(yù)加載)

發(fā)布時(shí)間:2020-09-23 11:52:43 來(lái)源:腳本之家 閱讀:211 作者:面具哥布林 欄目:web開發(fā)

ng-route模塊中的when()和ui-route的state()都提供了resolve屬性。

為什么需要使用resolve?

當(dāng)路由切換的時(shí)候,被路由的頁(yè)面中的元素(標(biāo)簽)就會(huì)立馬顯示出來(lái),同時(shí),數(shù)據(jù)會(huì)被準(zhǔn)備好并呈現(xiàn)出來(lái)。但是注意,數(shù)據(jù)和元素并不是同步的,在沒有任何設(shè)置的情況下,AngularJS默認(rèn)先呈現(xiàn)出元素,而后再呈現(xiàn)出數(shù)據(jù)。這樣就會(huì)導(dǎo)致頁(yè)面會(huì)被渲染兩遍,導(dǎo)致“頁(yè)面UI抖動(dòng)”的問(wèn)題,對(duì)用戶不太友好。resolve的出現(xiàn)解決了這個(gè)問(wèn)題。

resolve是干嘛用的

resolve屬性里的值會(huì)在路由成功前被預(yù)先設(shè)定好,然后注入到控制器中。通俗地將,就是等數(shù)據(jù)都“就位”后,才進(jìn)行路由(其實(shí)我覺得也不能叫路由,因?yàn)槁酚墒且恍┝械牟僮?,其中就包括了設(shè)置resolve屬性等等)。這樣的好處就是頁(yè)面僅會(huì)被渲染一遍。

<!--首頁(yè).html-->
<div ng-app="myApp">
<div><a ui-sref = "index">前往list.html</a></div>
<div ui-view></div><!--這里是路由視圖存放的地方-->
</div>
<!--list.html>
<div>
  <h2>HI,這里是list.html</h2>
  <a ui-sref="index.list">點(diǎn)擊加載list.html視圖</a>
  <div ui-view></div>
  <h2>{{user}}</h2>
  <h3>{{name}}</h3>
  <h4>{{age}}</h4>
  <h4>{{email}}</h4>
</div>
//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;
});

我在state方法里面設(shè)置了resolve屬性,里面的值是一個(gè)名為user的對(duì)象,它存有幾個(gè)值(格式好像JSON)。并把這個(gè)user變量注入到控制器中。這樣就完成了預(yù)加載了。

這種把resolve屬性的值(這里是user)注入到控制器的方式有一個(gè)非常強(qiáng)大的地方就是,可以運(yùn)用他來(lái)重用控制器,而我們需要做的僅僅只是改變user對(duì)象里面的值(tips:如果是嵌套路由的話,不重新設(shè)置resolve值則會(huì)“繼承”父路由的resolve值,如果不是嵌套路由且不重新設(shè)置,則不會(huì)正確顯示)。

<!--list.html-->
<div>
  <h2>HI,這里是list.html</h2>
  <a ui-sref="index.list">點(diǎn)擊加載list.html視圖</a>
  <a ui-sref="index.list2">點(diǎn)擊加載list2.html視圖</a>
  <div ui-view></div>
  <h2>{{user}}</h2>
  <h3>{{name}}</h3>
  <h4>{{age}}</h4>
  <h4>{{email}}</h4>
</div>
//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:'<h2>{{name}}</h2>',
      controller:'myController',
    })
    .state("index.list2",{
      url:'/list2',
      template:'<h2>{{name}}</h2>',
      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;
});

這里省略了首頁(yè)的html,可以翻到最上面看。重點(diǎn)對(duì)比最后的兩個(gè)state(),可以發(fā)現(xiàn)第一個(gè)沒有重新設(shè)置resolve屬性,而第二個(gè)重新設(shè)置了resolve()屬性。他們雖然共用了同一個(gè)控制器myController ,但是他們的值卻不相同。

這樣,控制器的可維護(hù)性就會(huì)得到提高。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI