jquery – 发送一个简单的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的情况下发送简单请求?

最佳答案 这看起来像你需要设置contentType参数,如下所示:

                     $.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环境中有一个很好的帖子.

点赞