我正在使用以下代码从 ASP.net MVC 应用程序请求数据。我也在使用 TcpTrace 以便我可以看到请求/响应。
if (isInteger($('#txtDay').val()) && isInteger($('#txtMonth').val()) && isInteger($('#txtYear').val())) {
$.ajax({
type: 'POST',
contentType: 'application/json; charset=utf-8',
url: strApi + 'wip/job/getsummary/' + $('#txtYear').val() + '/' + $('#txtMonth').val() + '/' + $('#txtDay').val(),
data: '{}',
dataType: 'json',
cache: false,
beforeSend: function(XMLHttpRequest) { ShowLoading(); },
success: function(data, textStatus) {
ShowJobSummaryList(data);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
HideLoading();
ShowStatus('unable to retrieve job summary list');
alert(XMLHttpRequest.statusText);
alert(textStatus);
},
complete: function(XMLHttpRequest, textStatus) {
HideLoading();
}
});
}
使用 IE 一切正常 - 内容类型正确设置为 application/json。但是在 Firefox 3.5.5 下,缺少内容类型:
OPTIONS /api/wip/job/getsummary/2009/11/25 HTTP/1.1
Host: localhost:8080
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-GB; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-gb,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Origin: http://localhost
Access-Control-Request-Method: POST
Access-Control-Request-Headers: x-requested-with
这会导致 ASP.net MVC 返回 XML。谁能解释为什么 Firefox 不发送内容类型?