我一直在研究为页面实现区域和语言功能。想获得一些关于正确的url结构的输入,这是可扩展的。 App基于nodejs,expressjs和angular2
截至目前,网页网址看起来像
app.com/vehicle/acura/model/mdx
app.com/vehicle/mazda/model/cx9
app.com/vehicle/honda/model/accord
app.com/vehicle/toyota/model/camry
为model
mdx,cx9,accord and camry
添加区域和语言支持的最佳方法是什么,以及添加正确的网址结构
app.com/vehicle/acura/model/mdx?lang-reg=en-US
app.com/vehicle/acura/model/en-US/mdx
app.com/vehicle/acura/model/mdx/en-US
app.com/en-US/vehicle/acura/model/mdx
这是我当前的节点路径
router.get('/vehicle/:car/model/:modelname')