ajax 设置Access-Control-Allow-Origin实现跨域访问
Posted 傲雪星枫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax 设置Access-Control-Allow-Origin实现跨域访问相关的知识,希望对你有一定的参考价值。
ajax跨域访问是一个老问题了,解决方法很多,比较常用的是JSONP方法,JSONP方法是一种非官方方法,而且这种方法只支持GET方式,不如POST方式安全。
即使使用jquery的jsonp方法,type设为POST,也会自动变为GET。
官方问题说明:
“script”: Evaluates the response as javascript and returns it as plain text. Disables caching by appending a query string parameter, “_=[TIMESTAMP]“, to the URL unless the cache option is set to true.Note: This will turn POSTs into GETs for remote-domain requests.
如果跨域使用POST方式,可以使用创建一个隐藏的iframe来实现,与ajax上传图
以上是关于ajax 设置Access-Control-Allow-Origin实现跨域访问的主要内容,如果未能解决你的问题,请参考以下文章