关于node.js:android 4.4上的Ionic 1发行版有cors错误

Release version of Ionic 1 on android 4.4 has cors errors

本问题已经有最佳答案,请猛点这里访问。

我目前在Android 4.4上使用版本构建时遇到了Ionic 1的问题。 我一直收到cors错误。 另外我使用node.js后端已经在其中指定了cors个请求。 到目前为止,这是我看到的错误:

SEC7121:[CORS]原点'http:// localhost:8100'在Access-Control-Allow-Origin响应头中找到*,当凭据模式为include时,对于'https://www.slywolf的跨源资源。co.za/api/auth/signin'。

对此有任何帮助将不胜感激。


将此项添加为node.js服务器中的中间件。
这将允许使用凭据进行跨源请求

1
2
3
4
5
6
7
app.use(function(req, res, next) {
        res.header("Access-Control-Allow-Origin","http://localhost:8100");
        res.header("Access-Control-Allow-Headers","Origin, X-Requested-With, Content-Type, Accept");
        res.header("Access-Control-Allow-Methods","GET, POST,PATCH, DELETE, PUT");
         res.header("Access-Control-Allow-Credentials", true);
        next();
    });