angularjs – 使用抽象状态的目的是什么?

前端之家收集整理的这篇文章主要介绍了angularjs – 使用抽象状态的目的是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在研究我的教程AngularUI项目.
我读了所有关于状态,嵌套状态和抽象状态.
问题是我不明白为什么,何时应该使用抽象状态?

Abstract state does mean the state that you wrote can’t be accessible
directly. Abstract states still need their own for their children to plug into.

当我们加载孩子的状态时,它被调用.您可以使用抽象状态来定义页面的一些初始模式,假设您可以以任何社交媒体网站为例,您希望显示用户个人资料社交页面.为此,你可以拥有一个抽象的状态,它将具有url:“”&具有您的页面的基本布局.像标题,内容和页脚命名视图.标题&页脚命名视图将由抽象状态&那么孩子会定义内容取决于显示哪个模块. / profile将显示userProfile.html& / social将显示一个用户social社交页面.

配置

app.config(function($stateProvider){
  $stateProvider.state("app":
  {
    url: "",//you can have the default url here..that will shown before child state url
    abstract: true,views: {
       '': {
          templateUrl: 'layout.html',controller: 'mainCtrl'
       },'header': {
          templateUrl: 'header.html'
       },'footer': {
          templateUrl: 'footer.html'
       }
    },resolve: {
       getUserAuthData: function(userService){
           return userService.getUserData();
       }
    }

  })
  .state("app.profile": {
      'content@app': {
          templateUrl: 'profile.html',controller: 'profileController'
      }
  })
  .state("app.social": {
      'content@app': {
          templateUrl: 'social.html',controller: 'socialController'
      }
  })
})

抽象的其他主要特征是您可以有一个共同的解决方案,通过数据提供继承的自定义数据,供儿童状态或事件监听器使用.也可以有OnEnter& OnExit在它之前确保事情在加载状态&同时离开国家

原文链接:https://www.f2er.com/angularjs/142635.html

猜你在找的Angularjs相关文章