我有一个React / Redux Universal应用程序,最近我添加了i18next来将内部化添加到我的网站中。
在我的react-router配置中,我已经编辑了路由:
const routes = [
{
component: App,
routes: [
{ path: '/:lng(fr|en)?/', exact: true, component: Home },
{ path: '/:lng?/about', component: About },
…
{ component: NotFound }
]
}
];
一切正常,但是我不知道如何在页面之间保持lng
参数。确实,当我使用<Link to="/about" >
时,我在逻辑上失去了参数。
那么,如何保留此参数?
谢谢