1

クライアント側から json データを data.ashx ファイルに送信しますが、ashx ファイルのProcessRequestメソッドからデータを読み取ることができません。なぜ私がnullになるのか理解できない

このようにして、クライアント側からashxファイルにデータを送信しています

                var FeedCrd = {};
                FeedCrd["Name"] = $("input[id*='txtName']").val();
                FeedCrd["Subject"] = $("input[id*='txtSubject']").val();
                FeedCrd["Email"] = $("input[id*='txtFEmail']").val();
                FeedCrd["Details"] = $("textarea[id*='txtDetails']").val();


                $.ajax({
                    type: "POST",
                    url: urlToHandler + "?ac=send",
                    data: JSON.stringify(FeedCrd),
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: function (data) {
                        if (data == "SUCCESS");
                        {
            //
                        }

                    },
                    error: function (XMLHttpRequest, textStatus, errorThrown) {
                        alert(textStatus);
                    }

                });

これがProcessRequestのashxファイルコードです

 public void ProcessRequest(HttpContext context)
    {
        string outputToReturn = "";
        context.Response.ContentType = "text/html";

        if (context.Request.QueryString["ac"] == "send")
        {
                string sName = context.Request["Name"];
                string sSubject = context.Request["Subject"];

                outputToReturn = "SUCCESS";
        }
        context.Response.Write(outputToReturn);
    }

また、firebig を使用してデータがサーバー側に送信される様子も見てきました。ここにデータがあります {"Name":"cvv","Subject":"fdsfd","Email":"dsdsa@xx.com","Details":"wow"}

jsonがクライアント側から送信するときにashxファイルからデータを読み取る方法を教えてください。どこで間違えたのか教えてください。私を導いてください。ありがとう

4

1 に答える 1

4

最初に注意すべき点は、context.Request オブジェクトで null または空の文字列を常に確認することです。

次に、応答は JSON オブジェクトである必要がありますが、文字列を返すだけです。.ashx ハンドラーから送信する前に JSON に構築します。

public void ProcessRequest(HttpContext context)
{
    string outputToReturn = String.Empty;   // Set it to Empty Instead of  ""
    context.Response.ContentType = "text/json";
    var ac = string.Empty ;
    var sName = String.Empty ;
    var sSubject = String.Empty ;

    // Make sure if the Particular Object is Empty or not
    // This will avoid errors
    if (!string.IsNullOrEmpty(context.Request["ac"]))
    {
        ac = context.Request["ac"];
    }


    if (ac.Equals("send")) // Use Equals instead of just =  as it also compares objects
    {
        if (!string.IsNullOrEmpty(context.Request["Name"]))
        {
            sName = context.Request["Name"];
        }
        if (!string.IsNullOrEmpty(context.Request["Subject"]))
        {
            sSubject = context.Request["Subject"];
        }
        // You need to Send your object as a JSON Object
        // You are just sending a sting 

        outputToReturn =  String.Format("{ \"msg\" : \"{0}\"  }", "SUCCESS" ) ;
    }
    context.Response.Write(outputToReturn);
}

// この場合、ajax は次のようになります

$.ajax({
    type: "POST",
    url: urlToHandler + "?ac=send",
    data: JSON.stringify(FeedCrd),
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function(data) {
        if( data != null){
            if (data.msg == "SUCCESS"); {

              alert( data.msg)
            }
        }
    },
    error: function(XMLHttpRequest, textStatus, errorThrown) {
        alert(textStatus);
    }

});​
于 2012-09-26T00:09:31.953 に答える