我想为$ routeProvider重定向多个URL。我该如何应用?例如,我正在尝试这样,

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


请注意,我想重定向/ laptop或/ mobile url,但是不起作用。有什么建议吗?

最佳答案

我用UI Router做类似的事情。

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


您应该能够轻松地对此进行调整。

10-05 21:43