useLocation
本页

useLocation

返回当前位置对象。

import { useLocation } from "@remix-run/react";

function SomeComponent() {
  const location = useLocation();
  // ...
}

属性

location.hash

当前 URL 的哈希值。

location.key

此位置的唯一键。

location.pathname

当前 URL 的路径。

location.search

当前 URL 的查询字符串。

location.state

<Link state>navigate创建的位置的状态值。

文档和示例已获得许可 MIT