如何使用ui-router $ stateProvider.state定义设置'reload:true'状态?

时间:2016-08-17 15:18:18

标签: angularjs angular-ui-router

我可以使用以下方式重新加载我的州:

<a ui-sref="state" ui-sref-opts="{reload: true, notify: true}">link</a>

但我想知道如何在我的州定义中执行此操作,当我尝试从/state/c/d转到/state/a/b/c/d

    $stateProvider.state('state', {
        name: 'state',
        url: '/state/{a:[0-9]+}/{b:[0-9]+}/{c:[0-9]+}/{d}',
        params: {
            a: {
                squash: true,
                value: null
            },
            b: {
                squash: true,
                value: null
            },
        },
   })

1 个答案:

答案 0 :(得分:1)

简短回答:你没有。选项不是州定义的一部分。只在转换时传递那些。