angularjs – 使用Ui-Router的ui-sref只是设置查询参数

前端之家收集整理的这篇文章主要介绍了angularjs – 使用Ui-Router的ui-sref只是设置查询参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下链接
<a ui-sref="...">Clicking this adds ?test=true to the query params.</a>

有没有办法使用ui-sref属性来更改查询参数而不重新加载页面或指向另一个函数

你应该能够通过将参数传递给状态来实现.

尝试:-

<a ui-sref="yourStateName({test:true})">Clicking this adds ?test=true to the query params.</a>

Usage:

ui-sref=’stateName’ – Navigate to state,no params. ‘stateName’ can be any valid absolute or relative state,following the same Syntax rules as $state.go()

ui-sref=’stateName({param: value,param: value})’ – Navigate to state,with params.

原文链接:https://www.f2er.com/angularjs/142831.html

猜你在找的Angularjs相关文章