gpt4 book ai didi

javascript - 如何在带有冒号的 ReactJS 中使用动态路由

转载 作者:行者123 更新时间:2023-11-30 14:13:08 25 4
gpt4 key购买 nike

我想根据动态的产品 ID 更改路由。

我使用冒号找到了这个变量的解决方案。

path: "/:product_id" component: ProductDetail

如何在我的组件中使用 product_id

最佳答案

作为explained in the docs ,您可以从 match 上的 params 对象访问数据 Prop 。

在您的情况下,它将是:match.params.product_id。例如:

function ProductDetail({ match }) {
return (
<div>
<h3>PID: {match.params.product_id}</h3>
</div>
);
}

关于javascript - 如何在带有冒号的 ReactJS 中使用动态路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54033921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com