How can I pass data with URLs to ui-sref?

喜夏-厌秋 提交于 2019-11-29 12:48:43

There is already logged issue in ui-router Github, you could found it here

In order to solve this you need to add this code inside your config which will take care of encoding and decoding of url.

you could override the built-in string type (which is performing the slash encoding) by registering your own replacement "string" type using below code

Code

app.config(['$urlMatcherFactory', '$stateProvider', function($urlMatcherFactory, $stateProvider) {
    //$stateProvider.state() & other code here

    function valToString(val) {
        return val != null ? val.toString() : val;
    }

    function regexpMatches(val) { /*jshint validthis:true */
        return this.pattern.test(val);
    }
    $urlMatcherFactory.type("string", {
        encode: valToString,
        decode: valToString,
        is: regexpMatches,
        pattern: /[^/]*/
    });
}]);

Working Plunkr

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!