我的app.js中有这个规则:
$routeProvider.when('/:language/rental-:type-:departure', {templateUrl: 'partials/rental.html', controller: 'itemCtrl'});
当用户输入类似:/en/rental-houses-santa-cruz-tenerife
然后:
var type = $routeParams.type; # houses-santa-cruz
var departure = $routeParams.departure; # tenerife
当我的预期结果是:
type = houses
departure = santa-cruz-tenerife
有没有办法实现这个目标?
答案 0 :(得分:1)
升级到角度1.2以执行此操作。
以角度处理此问题的标准方法是通过ngRoute和正则表达式(如here和here's a plunker所示),但角度1.0.8不允许使用正则表达式在路由模式中(see here,ctrl + f用于switchRouteMatcher)。
如果将版本升级到1.2是不可能的,那么你也可以使用角度1.0.8并添加更新switchRouteMatcher
方法。