有没有办法在路由的数据中引用路径参数?
我有一个看起来像这样的通用路线:
{ path: "Servicing/:type/:id", component: BaseComponent, data: { title: "Servicing" } },
我使用该title
属性在页面顶部(和<title>
标签)设置标题。因此,与其编写一些特殊的代码,这个标题处理必须知道它应该预先添加type
路径参数的某些页面,我想做这样的事情:
{ path: "Servicing/:type/:id", component: BaseComponent, data: { title: <type> + " Servicing" } },