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