Switch language
zh
Switch theme
Light

react-router-中-path-和-url-的关系

// jsx
let match = useRouteMatch()
console.log(match)
    // isExact: true
    // params: {topicId: "6"}
    // path: "/topics/:topicId"
    // url: "/topics/6"
  • 在动态路由中 其中, path 指的是路由的名称, 路径; url 指的是当前页面真实的地址, 也就是地址栏中显示的 url

  • 在非动态路由中, 二者是一样的

🍀