javascript NodeJs + Express中的CORS问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript NodeJs + Express中的CORS问题相关的知识,希望对你有一定的参考价值。

// Add headers
app.use(function (req, res, next) {

    // Website you wish to allow to connect
    res.setHeader('Access-Control-Allow-Origin', 'http://localhost:8888');

    // Request methods you wish to allow
    res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');

    // Request headers you wish to allow
    res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');

    // Set to true if you need the website to include cookies in the requests sent
    // to the API (e.g. in case you use sessions)
    res.setHeader('Access-Control-Allow-Credentials', true);

    // Pass to next layer of middleware
    next();
});

以上是关于javascript NodeJs + Express中的CORS问题的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 nodejs / express 将数据存储在 mongodb 中?

AngularJs 学习

js 遍历大文件

使用 node js 和 angular js 和 mysql 数据库

在 Node JS 中从不同的“会话”读取/写入相同的文件内容是不是有风险?

如何mock数据