zoukankan      html  css  js  c++  java
  • 解决NodeJS+Express模块的跨域访问控制问题:Access-Control-Allow-Origin

    在一个项目上想用NodeJS,在前端的js(http://localhost/xxx)中ajax访问后端RestAPI(http://localhost:3000/….)时(Chrome)报错:

    XMLHttpRequest cannot load http://localhost:3000/auth/xxx/xxx. Origin http://localhost is not allowed by Access-Control-Allow-Origin.

    解决代码:

    方案一:
     
    1. var express = require('express');  
    2. var app = express();  
    3. //设置跨域访问  
    4. app.all('*', function(req, res, next) {  
    5.     res.header("Access-Control-Allow-Origin", "*");  
    6.     res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");  
    7.     res.header("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");  
    8.     res.header("X-Powered-By",' 3.2.1')  
    9.     res.header("Content-Type", "application/json;charset=utf-8");  
    10.     next();  
    11. });  
    12.   
    13. app.get('/auth/:id/:password', function(req, res) {  
    14.     res.send({id:req.params.id, name: req.params.password});  
    15. });  
    16.   
    17. app.listen(3000);  
    18. console.log('Listening on port 3000...');  

    方案二: 

     
      1. var express = require('express');  
      2. var app = express();  
      3.   
      4. app.get('/auth/:id/:password', function(req, res) {  
      5.     res.header("Access-Control-Allow-Origin", "*");   //设置跨域访问  
      6.     res.send({id:req.params.id, name: req.params.password});  
      7. });  
      8.   
      9. app.listen(3000);  
      10. console.log('Listening on port 3000...');  
  • 相关阅读:
    phpHttp请求头
    第八周学习总结
    梦断代码阅读笔记-03
    第七周学习总结
    针对自己开发项目的NABC的认知
    梦断代码阅读笔记
    第六周学习总结
    第五周学习总结
    移动端疫情展示
    第四周学习总结
  • 原文地址:https://www.cnblogs.com/winyh/p/7052864.html
Copyright © 2011-2022 走看看