Release version of Ionic 1 on android 4.4 has cors errors
本问题已经有最佳答案,请猛点这里访问。
我目前在Android 4.4上使用版本构建时遇到了Ionic 1的问题。 我一直收到
SEC7121:[CORS]原点'http:// localhost:8100'在
对此有任何帮助将不胜感激。
将此项添加为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(); }); |