gpt4 book ai didi

javascript - 如何从 URL 获取帖子的 ID

转载 作者:行者123 更新时间:2023-11-30 13:48:33 24 4
gpt4 key购买 nike

我有一个格式如下的 URL:

http://localhost:3000/post/5dc07270e7179a5293d14e70

如您所见,/post/之后的部分包含一个 id。我设法通过执行以下操作获得它:

const path = this.props.location.pathname;
const postId = path.slice(6, 30);

有没有更好的方法在 React 中获取该 id?

最佳答案

您可以在“/”上拆分并使用负索引切片结果(如果 id 始终是路径的最后一部分)。

console.log("http://localhost:3000/post/5dc07270e7179a5293d14e70".split("/").slice(-1)[0]);

关于javascript - 如何从 URL 获取帖子的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58783116/

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