angular ui.router ui-sref替换url个字符-美化

angular ui.router ui-sref replace url characters - beautify

我正在寻找替换 ui-sref 中字符的可能性,尊重目标的 URL。

.state('base.product.detail', {
    url: 'detail/:productName-:productId/'

URL 现在看起来像:

Now: 
http://localhost/detail/My%20Product%20Name-123456789/

Should:
http://localhost/detail/My-Product-Name-123456789/

我想去掉%20(也是直接在ui-sref="")里面生成的,用减号(-)代替。

知道怎么做吗?

此致,马库斯

非常简单的方法:

在控制器中,使用 ui-sref(或者在单独的服务中更好):

$scope.beautyEncode = function(string){
    string = string.replace(/ /g, '-');
    return string;
};

在模板中:

<a href="" ui-sref="base.product.detail({productName: beautyEncode(product.name), productId: product.id})">

路由本身没有改变,angular路由仍然正确。

注册一个编组和解组数据的自定义类型。此处的文档:http://angular-ui.github.io/ui-router/site/#/api/ui.router.util.$urlMatcherFactory

让我们定义一个自定义类型。实现编码、解码、is 和模式:

  var productType = {
    encode: function(str) { return str && str.replace(/ /g, "-"); },
    decode: function(str) { return str && str.replace(/-/g, " "); },
    is: angular.isString,
    pattern: /[^/]+/
  };

现在将自定义类型注册为 'product' $urlMatcherFactoryProvider:

app.config(function($stateProvider, $urlRouterProvider, $urlMatcherFactoryProvider) {
  $urlMatcherFactoryProvider.type('product', productType);
}

现在将您的 url 参数定义为产品,自定义类型将为您进行映射:

  $stateProvider.state('baseproductdetail', {
    url: '/detail/{productName:product}-:productId/',
    controller: function($scope, $stateParams) { 
      $scope.product = $stateParams.productName;
      $scope.productId = $stateParams.productId;
    },
    template: "<h3>name: {{product}}</h3><h3>name: {{productId}}</h3>"
  });

工作经验:http://plnkr.co/edit/wsiu7cx5rfZLawzyjHtf?p=preview