React 下 window.location 报错问题
开发过程中用到 window.location
相关的代码时,在本地开发环境没问题,打包上线后就会报错。如:
window.location.href
、window.location.pathname
等。
最后改成react获取路由信息的方式
import { useLocation } from 'react-router'
const location = useLocation()
const routerName = () => {
console.log(location.pathname)
return location.pathname
}