gpt4 book ai didi

reactjs - 检查 Reactjs 中的路径链接

转载 作者:行者123 更新时间:2023-12-03 08:53:29 25 4
gpt4 key购买 nike

我想检查React Js中的路径。

例如 => /dashboard/dashboard/xyz

其中xyz可以是任何其他路径。

我该怎么做?

我想过这样做 /dashboard/* 但这不起作用。

const renderdashboard = (pathname === "/dashboard/*") ? ( <Dashboard /> ) : null;

最佳答案

您可能应该使用react-router .

话虽这么说,React 是一个显示框架,不包含任何相关代码。使用常规 Javascript 来检查它。

使用window.location获取位置as described here ,然后使用任何字符串函数来比较它。

示例:

window.location.pathname.includes('/dashboard/');
window.location.pathname.search(/^\/dashboard\/) > -1;

关于reactjs - 检查 Reactjs 中的路径链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57456083/

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