React Router v7 已发布。 查看文档
useNavigation
在此页面

useNavigation

此钩子提供有关待处理页面导航的信息。

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

function SomeComponent() {
  const navigation = useNavigation();
  // ...
}

属性

已提交表单的操作(如果有)。

// set from either one of these
<Form action="/some/where" />;
submit(formData, { action: "/some/where" });

已提交表单的方法(如果有)。

// set from either one of these
<Form method="get" />;
submit(formData, { method: "get" });

任何从 <Form>useSubmit 启动的 DELETEPATCHPOSTPUT 导航都将附加表单的提交数据。这主要用于使用 submission.formData FormData 对象构建“乐观 UI”。

例如

// This form has the `email` field
<Form method="post" action="/signup">
  <input name="email" />
</Form>;

// So a navigation will have the field's value in `navigation.formData`
// while the navigation is pending.
navigation.formData.get("email");

GET 表单提交的情况下,formData 将为空,数据将反映在 navigation.location.search 中。

这告诉您下一个位置将是什么。

  • idle - 没有待处理的导航。
  • submitting - 由于使用 POST、PUT、PATCH 或 DELETE 提交表单,因此正在调用路由操作。
  • loading - 正在调用下一个路由的加载器以渲染下一个页面。

正常的导航和 GET 表单提交会经历这些状态。

idle → loading → idle

使用 POST、PUT、PATCH 或 DELETE 的表单提交会经历这些状态。

idle → submitting → loading → idle
文档和示例的许可协议为 MIT