我有这段代码调用我的处理程序,但我无法在我的处理程序中接收数据,你能帮忙吗?
//客户端
$("#saveChanges").click(function () {
$.ajax({
url: "../handlers/adminSaveResults.ashx",
type: "POST",
data: "{ 'pinNovo': '" + "123456" + "' }",
async: true,
contentType: "application/json; charset=utf-8",
dataType: 'json',
success: function (data) {
alert("Dados Guardados! ;)");
},
error: function (data) { alert("ERRO: " + data.status); },
timeout: 15000
});
}
//服务器端 (adminSaveResults.ashx)
try
{
context.Response.ContentType = "text/json";
context.Response.Write(context.Request.QueryString["pinNovo"].ToString());
}
catch (Exception msg)
{
context.Response.Write(msg.Message);
}
结果总是一样的,我尝试了其他选项,但结果总是相同:对象引用未设置为对象的实例。