Expressjs 解决AJAX跨域请求 (CORS)
在我的前端项目http://localhost:63342/replay.moqi.mobi/index.html 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) {
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... (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |