加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Expressjs 解决AJAX跨域请求 (CORS)

发布时间:2020-12-16 01:47:55 所属栏目:百科 来源:网络整理
导读:在我的前端项目http://localhost:63342/replay.moqi.mobi/index.html 中访问expressjs的项目http://localhost:3000/blogs会出现跨域请求的问题,如下: XMLHttpRequest cannot load http://localhost:3000/blogs. No 'Access-Control-Allow-Origin' header i

在我的前端项目http://localhost:63342/replay.moqi.mobi/index.html
中访问expressjs的项目http://localhost:3000/blogs会出现跨域请求的问题,如下:

XMLHttpRequest cannot load http://localhost:3000/blogs. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:63342' is therefore not allowed access.

关于CORS,<pro express.js>书中38页介绍如下:

If you’re building an application (a REST API server) that serves requests coming from front-end clients hosted on different domains,you might encounter cross-domain limitations when making XHR/AJAX calls. In other words,browser requests are limited to the same domain (and port). The workaround is to use cross-origin resource sharing (CORS) headers on the server. If you don’t want to apply CORS headers to your server,then the JavaScript object literal notation with prefix (JSONP) is the way to go. Express.js has a res.jsonp() method that makes using JSONP a breeze.
■ Tip to find out more about CorS,go to http://en.wikipedia.org/wiki/Cross-origin_resource_sharing.

####简单粗暴的办法是在res中加上两个header项,如下:

/* GET blog listing. */
router.get('/',function(req,res,next) {
  res.header("Access-Control-Allow-Origin","*");
  res.header("Access-Control-Allow-Headers","Origin,X-Requested-With,Content-Type,Accept");
  res.json(blogs);

});

使用curl -i http://localhost:3000/blogs测试没有问题。在前端中使用requirejs-json插件访问也没有问题:

define(['jquery','underscore','mustache','text!templates/nav.html','json!http://localhost:3000/blogs'],function ($,_,Mustache,navTemplate,blogPosts) {


###相关代码:
后端的变化:https://github.com/uniquejava/moqi.mobi.express/commit/047cf53795a84a72d37fe0824d76273b17f8d7a5
前端的变化:https://github.com/uniquejava/replay.moqi.mobi/commit/7fd313a43d9d67d90df71450efd25a3149885610

####其它:加一个middleware

app.use(function(req,Accept");
  next();
});

app.get('/',next) {
  // Handle the get for this route
});

app.post('/',next) {
 // Handle the post for this route
});

### 使用connect-cors (最终选择了这个)

详见https://github.com/expressjs/cors的 Usage部分

1. 安装依赖

$ npm install cors

2. 对所有的路由启用cors

var express = require('express'),cors = require('cors'),app = express();

app.use(cors());

app.get('/products/:id',next){
  res.json({msg: 'This is CORS-enabled for all origins!'});
});

app.listen(80,function(){
  console.log('CORS-enabled web server listening on port 80');
});

3. 对某个路由启用cors

var express = require('express'),app = express();

app.get('/products/:id',cors(),function(){
  console.log('CORS-enabled web server listening on port 80');
});

4. 更多请看Usage...

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读