Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何在 durandal 中实现刷新按钮?有没有这样的东西以通用的方式工作?我想在许多页面上实现这一点。
return router.navigateTo(router.activeRoute());
还是我必须从视图模型中重建 url?
我最终使用 RainerAtSpirit 的答案在 shell 视图上实现了一个刷新按钮。代码片段显示在这里:
mainRefresh = function () { window.location.reload(); },
我认为我的应用程序中存在一个潜在问题,即有时数据未加载,但我会将其保存为另一个问题。