AngularJS Ui路由器匹配多条路由

时间:2014-10-03 10:16:42

标签: angularjs angular-ui-router

是否可以匹配ui-router中的多个状态? 我有许多共享相同模板和控制器的路由

.state('someState', {
      url: "/home",
      views: {
        'someContent' :{
          templateUrl: "templates.html",
          controller: 'SomeCtrl'
        }
      }
    })


.state('someOtherState', {
      url: "/other",
      views: {
        'someContent' :{
          templateUrl: "templates.html",
          controller: 'SomeCtrl'
        }
      }
    })

例如:

.state('someState', {
      url: ["/home", "/other" ],
      views: { ...

提前致谢

0 个答案:

没有答案