var OrderInfo = {"ProductID":
"ProductIDValue",
"ProductName": "ProductName",
"Quantity": 1,
"Amount": 9999,
"SLQuantity": 9999,
"SLDate": "08/03/2010"
};
var DTO = { 'OrderInfo': OrderInfo };
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "JasonHandler.ashx",
data: JSON.stringify(DTO),
dataType: "json"
});
次のコードを使用して、ASHXファイルでサーバー側に投稿されたJSONデータを取得しようとしています。
string strrequest = context.Request["OrderInfo"];
ただし、常にnullを返します。私は何を間違っていますか?
インターネットを掘る。 IEはPOSTリクエストを完全に受信するのに問題があることがわかりました。InputStreamに関する@ronaldwidhaの提案は私が見つけたものと似ています。しかし、javascriptserializerを使用するのではなくI JSON.NETの使用コードスニペットは以下のとおりです。これが同様の問題で他の人に役立つことを願っています
public class JasonHandler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "application/json";
context.Response.ContentEncoding = Encoding.UTF8;
System.IO.Stream body = context.Request.InputStream;
System.Text.Encoding encoding = context.Request.ContentEncoding;
System.IO.StreamReader reader = new System.IO.StreamReader(body, encoding);
if (context.Request.ContentType != null)
{
context.Response.Write("Client data content type " + context.Request.ContentType);
}
string s = reader.ReadToEnd();
string[] content = s.Split('&');
for (int i = 0; i < content.Length; i++)
{
string[] fields = content[i].Split('=');
//context.Response.Write("<div><strong>" + fields[0] + "</strong></div>");
//context.Response.Write("<div>" + fields[1] + "</div> ");
}
string jsonRecord = s;
}
}
から http://dailydotnettips.com/2013/09/26/sending-raw-json-request-to-asp-net-from-jquery/
var jsonString = String.Empty;
context.Request.InputStream.Position = 0;
using (var inputStream = new StreamReader(context.Request.InputStream))
{
jsonString = inputStream.ReadToEnd();
}
JavaScriptSerializer javaScriptSerializer = new JavaScriptSerializer();
object serJsonDetails = javaScriptSerializer.Deserialize(jsonString, typeof(object));