需要声明一个包含字符串和参数的可选路径
现在我有了这个路径
<Route exact path="/tasks/:id" render={(props) => (
<AsyncTask {...props} profile={this.state.profile} />
)} />
我需要有
/tasks/:id/notification/:notificationId
哪里notification/:notificationId
是可选的
我试图以这种方式添加它,但它不起作用
/tasks/:id/(notification/:notificationId)?
我需要这个来知道我是否来自通知链接,将其标记为已读。
这是工作
/tasks/:id/(notification)?/:notificationId?
但它匹配并且没有路径 notificationId