这让我感到难过 - 我不知道问题是什么!
此调用始终返回500错误:
查询:
$('body').on('click', '.day', function () {
// a suspect day has been clicked
if (confirm('Re-index documents received on this day?')) {
// re-index
var day = $(this).find('.day_number').text();
var year = parseInt($('#hidYear').val());
var month = parseInt($('#hidMonth').val());
$.ajax({
type: "POST",
url: "ajax.asmx/ReIndexDay",
data: JSON.stringify( { Month: month, Year: year, Day: day } ),
contentType: "application/xml; charset=utf-8",
dataType: "xml",
success: function (data) {
var calendarHTML = $(data).find(':first').text();
// update hidden fields and calendar
$('#hidYear').val(year);
$('#hidMonth').val(month);
$('#divContent').html(calendarHTML);
},
error: function (msg) {
alert("Failed: " + msg.status + ": " + msg.statusText);
}
});
}
});
C#
[WebMethod(Description = "Re-index the day and return HTML of a calendar table for the month")]
[ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
public string ReIndexDay(int Day, int Month, int Year)
{
Diagnostic.ReIndex(Day, Month, Year);
return GetIndexCalendarHTML(Month, Year);
}
我现在被困住所以所有的建议都赞赏了!
[编辑]
我从浏览器中得到了这个 - 不确定它是否准确,因为它可能不会重现同样的事情:
System.InvalidOperationException:请求格式无效:application / xml;字符集= UTF-8。 System.Web.Services.Protocols.ProtProcessRequest()
中的System.Web.Services.Protocols.HttpServerProtocol.ReadParameters()[/编辑]
答案 0 :(得分:1)
您发送JSON,但您的内容类型设置为XML。尝试将其更改为此。
contentType: 'application/json; charset=utf-8',
答案 1 :(得分:1)
除了将内容类型设置为:
contentType: 'application/json; charset=utf-8',
而不是像你一样的XML(如@Zachary所说(我在评论中说:))。您还需要实际发回XML。
说:
[ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
实际上不会将您的字符串编码为XML,它只是将Content-type标头设置为:
Content-Type: text/xml; charset=utf-8.
你实际上必须返回XML。这有点误导。
编辑:实际上,让我对此表示赞赏。发送字符串时 XML 除了。您可以通过执行以下操作将其包装在XML中:
[ScriptMethod(ResponseFormat = ResponseFormat.Xml,XmlSerializeString = true)]