关于jQuery中$.ajax()跨域
2020-11-16 07:42
标签:http java 使用 os io for 今天研究了一些用jquery $.ajax跨域的方法,总结了一些注意事项如下:
首先,跨域JSONP不是AJAX。它不使用XMLHttpRequest。只不过是一个动态脚本元素加载JavaScript代码。 Cross-domain JSONP isn’t AJAX at all. It doesn’t use XMLHttpRequest. It’s
nothing more than a dynamic script element that loads JavaScript code. You can’t do a POST with a dynamic script element. Where would you put the
POST data? I don’t know what the $.ajax code is trying to do – maybe it should fail in
a more informative way. It will fail one way or another regardless. 其次,要使用get访问(type:get)。 第三,async要为true(默认为true) 。 Cross-domain requests and
第四,cache要设为false(默认为true)。 Disables caching by appending a query
string parameter, "_=[TIMESTAMP]", to the URL unless the 最后设置一下jsonp和jsonpCallback就ok了。 关于jQuery中$.ajax()跨域,搜素材,soscw.com 关于jQuery中$.ajax()跨域 标签:http java 使用 os io for 原文地址:http://www.cnblogs.com/zhaozhilu/p/3699670.html
dataType: "jsonp"
requests do not support synchronous
operation.cache
option is set to true
.
文章标题:关于jQuery中$.ajax()跨域
文章链接:http://soscw.com/index.php/essay/21618.html