gpt4 book ai didi

reactjs - 在 React 中如何将 Id 传递给另一个页面类组件

转载 作者:行者123 更新时间:2023-12-04 07:16:14 25 4
gpt4 key购买 nike

我需要使用 Class 组件将 Id 传递给另一个 Page。 this.props.match.params.group_Id 它返回 undefined.Here 是我的代码

#page1
<Link to={"/GroupsDetail.js/?group_Id="+item.group_Id}}>Details</Link>

#page2

submit() {
let Id= this.props.match.params.group_Id;
console.log(Id);
let url = 'http://localhost:0000/api/Group/GroupDetailsDisplay?group_Id='+Id;
}
需要将该 ID 传递给 API。请分享您的想法。谢谢

最佳答案

const url = new URL(window.location.href);
const Id = url.searchParams.get("group_Id");

关于reactjs - 在 React 中如何将 Id 传递给另一个页面类组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68738312/

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