CORS 错误:尝试获取前端用户电子邮件和密码信息时出现错误

问题描述 投票:0回答:1

我有一个用于后端的本地主机端口 1000。对于前端,端口是 5173 现在要从后端访问表单数据,我使用 CORS 从我的服务器请求,但它显示错误 401:未经授权,而它在 Postman 中给我 200。

我使用 CORS 的代码

app.use(cors({ origin: "http://localhost:5173", credentials: true }));

控制台日志上的错误

Failed to load resource: the server responded with a status of 401 (Unauthorized)

我期望登录并获取表单数据作为用户输入的电子邮件和密码。 但是由于 401 未经授权的错误,导致注册失败

html node.js typescript cors
1个回答
0
投票

前端发送请求时,请确保在 axios 中包含此密钥:withCredentials: true

© www.soinside.com 2019 - 2024. All rights reserved.