Questions tagged «react-router-redux»

13
React-Router外部链接
由于我正在使用react-router来处理我的React应用程序中的路由,因此我很好奇是否可以重定向到外部资源。 假设有人点击: example.com/privacy-policy 我希望它重定向到: example.zendesk.com/hc/en-us/articles/123456789-Privacy-Policies 我发现避免在index.html加载类似以下内容的纯JS中编写零帮助: if ( window.location.path === "privacy-policy" ){ window.location = "example.zendesk.com/hc/en-us/articles/123456789-Privacy-Policies" }



6
如何同步Redux状态和url查询参数
我有一个带有搜索面板的网页。搜索面板有几个输入字段:id,size,... 我想要的是用户设置搜索值(例如:id = 123和size = 45)并按下搜索按钮时: Redux reducer中的searchState应该使用新的搜索值(id = 123和size = 45)进行更新 网址应更改为“ http:// mydomain / home?id = 123&size = 45 ” 另一方面,如果用户将URL更改为http:// mydomain / home?id = 111&size = 22,则: reducer中的searchState应该使用新的搜索值(id = 111和size = 22)进行更改 UI搜索面板输入应更新为新值(id = 111和size = 22) 如何达成目标?我应该使用什么路由器(react-router,redux-router,react-router-redux或其他)?

2
如何同步Redux状态和URL哈希标签参数
我们提供了讲座和章节的列表,用户可以在其中选择和取消选择它们。这两个列表存储在redux存储中。现在,我们希望在url的hash标签中保留选定的演讲段和章节段的表示形式,并且对该URL所做的任何更改也应更改存储(双向同步)。 使用react-router甚至react-router-redux的最佳解决方案是什么? 我们真的找不到一些很好的示例,其中react路由器仅用于维护url的hash标签,并且仅更新一个组件。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.