带有 ui-router 的 angular-material 中每个选项卡的单独控制器

Separate controller per tab in angular-material w/ ui-router(带有 ui-router 的 angular-material 中每个选项卡的单独控制器)
本文介绍了带有 ui-router 的 angular-material 中每个选项卡的单独控制器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试实现我的 md-tabs,因此每个 md-tab 都是使用 angular-material 的单独状态.我当前的标记如下所示:

I'm trying to implement my md-tabs so each md-tab is a separate state using angular-material. My current markup looks like this:

  md-tabs.is-flex.auto-flex(selected="selectedIndex",layout="vertical")
     md-tab(on-select="selectTab(0)",label="Player",ui-sref="state1")
        div.tab(ui-view)

     md-tab(on-select="selectTab(1)",label="Map",ui-sref="state2")
        div.tab(ui-view)

不过,我认为这不是 ui-router 的有效标记.是否可以使用当前版本的 angular-material 和 ui-router 做到这一点?

I don't think this is valid markup for ui-router, though. Is it possible to do this with the current version of angular-material and ui-router?

推荐答案

如果你命名你的 ui-view 元素(例如 <div ui-view="player"></div>) 然后你可以在你的 $stateProvider 配置中定位它们.

If you name your ui-view elements (e.g. <div ui-view="player"></div>) then you can target them in your $stateProvider config.

因此,鉴于 template.html 中的以下标记:

So, given the following markup in template.html:

<md-tabs md-selected="currentTab">
    <md-tab label="Player" ui-sref="tabs.player">
        <div ui-view="player"></div>
    </md-tab>
    <md-tab label="Map" ui-sref="tabs.map">
        <div ui-view="map"></div>
    </md-tab>
</md-tabs>

您可以使用以下 $stateProvider 配置来定位每个 ui-view 元素(并更新 currentTab 索引):

You could target each ui-view element (and update the currentTab index) with the following $stateProvider config:

.state('tabs', {
    abstract: true,
    url: '/tabs',
    templateUrl: 'template.html',
    controller: function($scope) {
      $scope.$on('$stateChangeSuccess', function(event, toState, toParams, fromState, fromParams) {
        $scope.currentTab = toState.data.selectedTab;
      });
    }
  })
.state('tabs.player', {
    url: '/player',
    data: {
      'selectedTab': 0
    },
    views: {
      'player': {
        controller: playerController
      }
    }
  })
.state('tabs.map', {
    url: '/map',
    data: {
      'selectedTab': 1
    },
    views: {
      'map': {
        controller: mapController
      }
    }
  })

您现在需要做的就是定义 playerControllerma​​pController.您仍然可以将部分模板等加载到 ui-view 中,请参阅 多个命名视图.

All you need to do now is define playerController and mapController. You can still load partial templates etc. into the ui-view, see the section on Multiple Named Views.

这篇关于带有 ui-router 的 angular-material 中每个选项卡的单独控制器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)