cookie 未存储在浏览器中

时间:2021-03-06 15:11:56

标签: node.js express cookies cross-domain

还有我的 cors 策略配置

app.use(
  cors({
    credentials: true,
    origin: "https://client-boggy.vercel.app",
    path: "/",
    methods: ["GET", "POST", "PUT", "DELETE"],
  })
);

但不工作enter image description here

1 个答案:

答案 0 :(得分:0)

根据您分享的屏幕截图,httpOnly 选项似乎设置为 true,which prevents client side JavaScript from accessing the cookie

您能否分享设置 cookie 的快速代码,以及您在控制台中获得的结果 cookie 字符串以确保安全?