如何使用react-router-dom v6在react中创建路由?
目前我正在尝试:
<Route path="/registration:id" element={<Registration />} />
Run Code Online (Sandbox Code Playgroud)
当 url 为“http://localhost:3000/registration?code=testCode”时,我收到错误:
No routes matched location "/registration?code=testCode
Run Code Online (Sandbox Code Playgroud)
我尝试过以多种不同的方式操作路由路径,唯一有效的方法是路径没有查询部分“:id”。
这是 v6 的新语法还是我做错了什么?