angular ui-router: how do I reload a state when a path parameter changes but not reload when a query parameter changes?(angular ui-router:如何在路径参数更改时重新加载状态,但在查询参数更改时不重新加载?)
问题描述
例如,我希望导航中的这种更改重新加载状态:
For example, I want this change in navigation to reload the state:
#/detail/1
#/detail/2
但我不希望这个导航重新加载状态:
But I do not want this navigation to reload the state:
#/detail/1?search=blah
#/detail/1?search=huzzah
根据 ui-router 文档,设置 reloadOnSearch: false
应该可以完成此操作,但请尝试下面的 plunk.当 reloadOnSearch === false
时,更改路径参数不会重新加载状态,即使文档说明它应该这样做.
According to the ui-router documentation, setting reloadOnSearch: false
should accomplish this, but try the plunk below. When reloadOnSearch === false
, changing the path parameter doesn't reload the state even though the documentation says it should.
Plunkr:http://run.plnkr.co/ZPy9uabYlkMilwdS/#/param
推荐答案
这是 UI-Router 中的一个错误,已在 0.2.15 版本中修复:
This is a bug in UI-Router that was fixed in release 0.2.15:
https://github.com/angular-ui/ui-router/releases
升级到最新版本将解决问题
Upgrading to the latest will fix the issue
这篇关于angular ui-router:如何在路径参数更改时重新加载状态,但在查询参数更改时不重新加载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:angular ui-router:如何在路径参数更改时重新加载状态,但在查询参数更改时不重新加载?
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01