请求的来源上不存在CORS

时间:2019-05-21 13:32:43

标签: javascript cors

我从前端向后端发出请求

例如,我的后端有这个地址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/yyyhttp://zzzzzz上缺少CORS吗?

0 个答案:

没有答案