项目用的是hook,所以像是无状态中的this.props就可以打印出来地址,这里是不行的,也没有生命周期了,所以在componentDidMount()中获取也是不行的,还有一种方法,BrowserHistory,react-router4.0官方文档里已经废弃了,使用会直接报错,所以也不行,历经千辛万苦终于找到了下面的方法
import { useLocation } from "react-router-dom"
function LookLocation(props) {
const hash = useLocation()
console.log(hash)
}
export default LookLocation;