在服务端的响应头中添加“Acc
ess
-Control-Allow-Origin”字段。例如,在使用Node.js的Expr
ess
框架中,可以如下设置:
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next(); // 让程序继续向下处理
其中,第一个参数表示允许跨域请求的页面地址,可以使用通配符*表示允许任何网站请求;第二个参数表示允许请求的头部字段。
也可以使用以下代码,专门处理Ajax请求:
app.all('*', function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "X-Requested-With");
res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");
res.header("X-Powered-By",' 3.2.1');
res.header("Content-Type", "application/json;charset=utf-8");
next();