发送一个简单的GET请求

时间:2010-07-08 15:43:52

标签: jquery ajax get request

我想发送服务器简单的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?

的情况下发送简单请求

1 个答案:

答案 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环境中有一篇很好的帖子。