$ routeProvider中的多个url

时间:2016-05-17 19:27:00

标签: angularjs angularjs-routing route-provider

我想为$ routeProvider重定向多个网址。我该如何申请?例如,我正在尝试这样,

.when('/laptop' || '/mobile', {
     templateUrl: '/Selection_Routing/Selection_Product/ProductDetails.html',
     controller: 'ProductDetailsController'
     })

请注意,我想重定向/ laptop或/ mobile网址,但它无效。有什么建议吗?

1 个答案:

答案 0 :(得分:2)

我使用UI路由器做类似的事情。

var sameURL = "laptop,mobile,foo,bar".split(",");
angular.forEach(sameURL function(route) {
     .state(route, {
          url: "/" + route,
          templateUrl: "views/home.html"
      })
})

你应该能够轻松地适应这一点。