我试图将JSON从jQuery传递到.ASHX文件。下面的jQuery示例:
$.ajax({ type: "POST",url: "/test.ashx",data: "{'file':'dave','type':'ward'}",contentType: "application/json; charset=utf-8",dataType: "json",});
public void ProcessRequest(HttpContext context)
但我在请求中找不到JSON值。
解决方法
我知道这是太老了,但只是为了纪录,我想加我5美分
您可以使用此读取服务器上的JSON对象
string json = new StreamReader(context.Request.InputStream).ReadToEnd();