发送一个简单的 GET 请求
我想发送一个服务器简单的 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 的情况下发送简单的请求?
I want to send a server simple GET request but as I see the .ajax sends x-requested-with header which my server doesn't understand.
$.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)
})
},
})
in headers ---> X-Requested-With: XMLHttpRequest
Is it possible to send a simple request without using x-request-with?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这看起来像您需要设置 contentType 参数,如下所示:
或
Encosia 在 .net 环境中有一篇关于此的好文章。
This looks like you need to set the contentType parameter, something like this:
or
Encosia has a good post about this from the .net enviroment.