9
我的應用程序有多個區域設置(it,en)。如何翻譯react-router路徑路徑
我需要翻譯所有路線。比如我有條款和條件頁面有路徑(每個區域一個):
it/termini
en/terms
我需要的不僅僅是做一些事情,如:
// routes.js
const routes = (
<Route path="/" component={App}>
<IndexRoute component={HomePage} />
<Route path="(it/termini)(en/terms)" component={TermsPage} />
<Route path="*" component={NotFoundPage} />
</Route>
)
正如您所看到的,這個時髦的解決方案對於應用程序的可伸縮性不太好。
on'return(
cl0udw4lk3r
是的,他的意思是'Route' – Telokis