我从前端向后端发出请求
例如,我的后端有这个地址http://xxxxx
,然后是后端http://yyyy/yyy
我收到此错误消息
通过
https://zzzzzz
访问XMLHttpRequest(从https://yyyyyy/yyy
的来源https://yyyy
已被 CORS政策:在“ 请求的资源。
我已经在后端CORS授权中添加了
this.app.use((req: Request, res: Response, next: NextFunction) => {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'POST, PUT, GET, DELETE, OPTIONS');
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, x-access-token');
res.header('Access-Control-Allow-Credentials', 'true');
但是我收到相同的错误消息。
我想知道https://yyyyy/yyy
或http://zzzzzz
上缺少CORS吗?