我想允许ui-router解析路径中带有doubleslashes的状态。
我有以下状态:
.state('state', {
url: 'path/to//:foo',
templateUrl: 'template.html',
})
如果我致电$state.go('state', {foo: 'bar'})
,状态将解析为example.com/path/to//bar
。
如果我将example.com/path/to//bar
直接输入浏览器的地址栏,那么我会被重定向到example.com
。
有没有办法在路线中允许双打?