angularjs/ionic $resource 出现 preflight的解决方案

前端之家收集整理的这篇文章主要介绍了angularjs/ionic $resource 出现 preflight的解决方案前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


参考

How to skip the OPTIONS preflight request in AngularJS


在factory定义的function中,加一行:

$http.defaults.headers.post["Content-Type"] = "text/plain";

即可

猜你在找的Angularjs相关文章