美文网首页
node跨域访问数据

node跨域访问数据

作者: 萤火虫de梦 | 来源:发表于2019-05-17 01:34 被阅读0次

    node返回数据时,设置下面头部跨域实现跨域

    res.setHeader('Access-Control-Allow-Origin','*');
    res.setHeader('Access-Control-Allow-Headers', 
    'Content-Type, Content-Length, Authorization, 
    Accept, X-Requested-With , yourHeaderFeild');
    res.setHeader('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS');
    

    相关文章

      网友评论

          本文标题:node跨域访问数据

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