data
这是一个与单次获取一起使用的工具,用于返回带有状态代码或自定义响应头的原始数据。这样可以避免为了提供自定义状态/标头而需要将数据序列化为 Response
实例。这通常是之前在单次获取之前使用json
或defer
的 loader
/action
函数的替代方案。
import { data } from "@remix-run/node"; // or cloudflare/deno
export const loader = async () => {
return data(
{ not: "coffee" },
{
status: 418,
headers: {
"Cache-Control": "no-store",
},
}
);
};
如果您不需要返回自定义状态/标头,则不应该使用此函数 - 在这种情况下,直接返回数据即可
export const loader = async () => {
// ❌ Bad
return data({ not: "coffee" });
// ✅ Good
return { not: "coffee" };
};