我想发送服务器简单的GET请求但是我看到.ajax发送x-requested-with标头,我的服务器不理解。
$.ajax({
type: 'GET',
url: 'coord-' + x + '-' + y + '-' + iname,
success: function(data) {
$('img').each(function(idx, item) {
var img_attr = $(this).attr("src")
var name = img_attr.match(/\d+-\d+\.\w+/)
name = name + '?r=' + Math.random()
$(this).removeAttr("src")
$(this).attr("src",name)
})
},
})
标题中的 ---> X-Requested-With:XMLHttpRequest
是否可以在不使用x-request-with?
答案 0 :(得分:2)
这看起来像你需要设置内容Type参数,如下所示:
$.ajax({
type: 'GET',
url: 'coord-' + x + '-' + y + '-' + iname,
contentType: 'application/json; charset=utf-8'
success: function(data) {....
或
beforeSend: function(xhr) {
xhr.setRequestHeader("Content-type",
"application/json; charset=utf-8");
},
Encosia在.net环境中有一篇很好的帖子。