我在xyz.jsx
文件中,我想获得当前页面的URL并匹配该值。
例如:
getCurrentURL = www.testreact.reactadmin.com/abc/23
value = admin
if(valuematch)
{ return true }
else
{ return false }
要获取当前页面的URL,可以使用:
window.location.href
要匹配您可以使用的值:
const url = window.location.href
const value = 'admin'
if(url.includes(value)) {
return true
} else {
return false
}