useLoaderData
返回最近路由loader
中的序列化数据。
import { json } from "@remix-run/node"; // or cloudflare/deno
import { useLoaderData } from "@remix-run/react";
export async function loader() {
return json(await fakeDb.invoices.findAll());
}
export default function Invoices() {
const invoices = useLoaderData<typeof loader>();
// ...
}
讨论
API