1

我有这段代码调用我的处理程序,但我无法在我的处理程序中接收数据,你能帮忙吗?

//客户端

$("#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);
                }

结果总是一样的,我尝试了其他选项,但结果总是相同:对象引用未设置为对象的实例。

4

1 回答 1

0

您正在以 JSON 格式发送数据,但正在尝试读取查询字符串。

像这样使用

$("#saveChanges").click(function () {
    $.ajax({
        url: "../handlers/adminSaveResults.ashx?pinNovo=123456",
        type: "POST",
        data: {},
        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
    });
}

现在您可以在查询字符串中接收数据。

于 2013-10-31T09:40:29.327 回答