美文网首页
Node Js 跨域

Node Js 跨域

作者: 3c9a4f007e1b | 来源:发表于2018-08-03 11:24 被阅读0次

    No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.

    • 解决方案
    // 原生设置
    res.setHeader('Access-Control-Allow-Origin','*')
    
    // express设置
    res.header('Access-Control-Allow-Origin', '*');
    

    如果疑问,可加QQ:29727880

    相关文章

      网友评论

          本文标题:Node Js 跨域

          本文链接:https://www.haomeiwen.com/subject/wddyvftx.html