express中跨域处理

2020-02-09  本文已影响0人  squidbrother
不依赖第三方包的跨域

放在所有中间件之前

// 自定义跨域中间件
var allowCors = function(req, res, next) {
    res.header('Access-Control-Allow-Origin', req.headers.origin);
    res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
    res.header('Access-Control-Allow-Headers', 'Content-Type');
    res.header('Access-Control-Allow-Credentials','true');
    next();
};
app.use(allowCors);//使用跨域中间件
借助于express的第三方包

安装
npm install cors -S
使用
方式一,针对所有接口
app.use(require('cors')())
方式二,针对特定接口

const cors = require('cors');
app.get('/about', cors() ,(req,res)=>{
    res.send({
        page:'about'
    });
})
上一篇 下一篇

猜你喜欢

热点阅读