我使用以下方法在 IIS 中运行 WCF 服务:
public void Test()
{
HttpContext.Current.Response.StatusCode = 500;
HttpContext.Current.Response.Write("You cannot do this.");
}
在我的客户端 HTML 页面上,我有以下内容:
$(document).ready(function () {
$.ajax({
type: "POST",
url: 'MyService.svc/Test',
data: '',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
alert('success');
},
error: function (result) {
alert(result.responseText);
}
});
});
调用错误回调,但 responseText 始终只有两个字符:“Yo”。我检查了响应,它似乎只返回了 2 的内容长度。这是怎么回事?为什么我没有收到回复的全部内容?