redirectDocument
这是对 redirect
的一个小包装,它将触发文档级别的重定向到新位置,而不是客户端导航。
当您的 Remix 应用程序与同一域上的非 Remix 应用程序并存,并且需要从 Remix 应用程序重定向到非 Remix 应用程序时,这非常有用
import { redirectDocument } from "@remix-run/node"; // or cloudflare/deno
export const action = async () => {
const userSession = await getUserSessionOrWhatever();
if (!userSession) {
// Assuming `/login` is a separate non-Remix app
return redirectDocument("/login");
}
return json({ ok: true });
};
就像 redirect
一样,它接受状态代码或 ResponseInit
作为第二个参数
redirectDocument(path, 301);
redirectDocument(path, 303);
redirectDocument(path, {
headers: {
"Set-Cookie": await commitSession(session),
},
});