主分支
分支
主分支 (2.15.2)开发分支
版本
2.15.21.19.3v0.21.0
React Router v7 已发布。 查看文档
重定向

redirect (重定向)

这是发送 30x 响应的快捷方式。

import { redirect } from "@remix-run/node"; // or cloudflare/deno

export const action = async () => {
  const userSession = await getUserSessionOrWhatever();

  if (!userSession) {
    return redirect("/login");
  }

  return json({ ok: true });
};

默认情况下,它发送 302,但您可以将其更改为您想要的任何重定向状态代码

redirect(path, 301);
redirect(path, 303);

您还可以发送一个 ResponseInit 来设置标头,例如提交会话。

redirect(path, {
  headers: {
    "Set-Cookie": await commitSession(session),
  },
});

redirect(path, {
  status: 302,
  headers: {
    "Set-Cookie": await commitSession(session),
  },
});

当然,如果您愿意自己构建,您也可以在没有此助手的情况下进行重定向

// this is a shortcut...
return redirect("/else/where", 303);

// ...for this
return new Response(null, {
  status: 303,
  headers: {
    Location: "/else/where",
  },
});

并且您可以抛出重定向来突破调用堆栈并立即重定向

if (!session) {
  throw redirect("/login", 302);
}
文档和示例基于 MIT 许可 MIT