gpt4 book ai didi

redux - 使用 ReactRouter v4 和 redux 将语言环境作为 URL 参数

转载 作者:行者123 更新时间:2023-12-05 06:37:04 26 4
gpt4 key购买 nike

我正在使用 React 和 Redux 构建一个多语言应用程序:

{
"react": "16.2.0",
"redux": "3.7.2",
"react-redux": "^5.0.6",
"react-router-redux": "^5.0.0-alpha.9",
"react-router": "^4.2.0",
"react-redux-i18n": "^1.9.1"
}

已解决(使用 path-to-regexp):https://codesandbox.io/s/307nz4p9nm

编辑:终于可以渲染组件了。最后一个麻烦是路径生成,对于我的语言选择器。

我正在使用 <ConnectedRouter />createBrowserHistory() .

我有以下结构:

// containers/App.jsx
<div>
<ul>
<li>
<NavLink to={`${match.url}/`}>Home</NavLink>
</li>
<li>
<NavLink to={`${match.url}/ABC`}>ABC</NavLink>
</li>
<li>
<NavLink to={`${match.url}/DEF`}>DEF</NavLink>
</li>
<li>
<NavLink to={`${match.url}/GHI`}>GHI</NavLink>
</li>
<li>
<NavLink to={`${match.url}/JKL`}>JKL</NavLink>
</li>
</ul>
<div>
<Router />
</div>
<footer>
<Link to={ (???) }>English</Link>
<Link to={ (???) }>French</Link>
</footer>
</div>

// containers/Router.jsx
<Switch>
<Route exact path={`{match.url}/`} component={Home} />
<Route exact path={`{match.url}/abc`} component={AbcComponent} />
<Route exact path={`{match.url}/def`} component={DefComponent} />
<Route exact path={`{match.url}/ghi`} component={GhiComponent} />
<Route exact path={`{match.url}/jkl`} component={JklComponent} />
</Switch>

// containers/RootContainer.jsx
<Provider store={store}>
<ConnectedRouter history={history}>
<Switch>
<Route path='/:locale(en|fr)' component={App} />
<Redirect to='/en' />
</Switch>
</ConnectedRouter>
</Provider>

以这种方式呈现:

const store = createStore(combineReducers({}))
const history = createBrowserHistory()

ReactDOM.render(
<RootContainer store={store} history={history} />,
document.getElementById('app-container')
)

这导致以下 URI:

/
/(en|fr)
/abc
/def
/ghi
/jkl

现在,我正在寻找一种方法来实现我的语言环境选择器:生成当前页面的路径,只需更新 :locale参数。

无论我当前访问的路线是什么( /en/en/abc ),match.path总是返回 /:locale(en|fr)而且我从不从我的 App 组件访问子路径(例如 /abc)。

然后怎么钩react-redux-i18n自动从 URL 获取语言环境而不是在它自己的状态下管理它?

最佳答案

<Switch>仅适用于 Route 和 Redirect 作为直接后代。所以 LocalizedRoute组件不工作。

<ConnectedRouter basename=/:locale/ history={history} />

我不知道 basename prop 和不必要的 imo,删除它。

你可以做的是使用动态路由:

<Route path="/:locale/<path>"/> 

并减少 LOCATION_CHANGE 中的语言环境参数行动。但是还有更多解决方案,例如:

<Switch>
<Route path="/en" component={SwitchMyRoutes} /> // No exact!!
<Route path="/fr" render={(match,location)=> <SwitchMyRoutes locale="fr" match={match}/>} />
<Route render={({location})=> <Redirect to={`/en/${location}`}/>}/>
</Switch>

关于redux - 使用 ReactRouter v4 和 redux 将语言环境作为 URL 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48565010/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com