ajax设置contentType=json后台取值问题

ajax中的contentType有多种类型,默认是contentType=application/x-www-form-urlencoded;charset=utf-8;,如果设置contentType=application/json;charset=utf-8;那就会发生在后台无法通过context.Request.Form[]获取参数的情况,下面我就post、get两种方式进行梳理。
 

1.post传值

前台代码,data是json字符串:

function PostSendParams() {
    $.ajax({
        type: "post",
        url: "Handler1.ashx",
        contentType: "application/json;charset=utf-8;",
        data: "{ \"contentType\": \"application/json\", \"param2\": \"18\" }",
        dataType: "json",
        success:function(data) {
            alert("data=" + data);
        },
        error:function(error) {
            alert("error=" + error);
        }
    });
}

后台取值:

public void ProcessRequest(HttpContext context)
{
    try
    {
        #region Form取值(不行)
        //string contentType = context.Request.Form["contentType"].ToString();
        //string param2 = context.Request.Form["param2"].ToString();
        #endregion

        #region InputStream取值(可以)
        Stream stream = context.Request.InputStream;
        byte[] bytes = new byte[stream.Length];
        stream.Read(bytes, 0, bytes.Length);
        string parameters = Encoding.Default.GetString(bytes);
        JObject jObject = (JObject)JsonConvert.DeserializeObject(parameters);
        string contentType = jObject["contentType"].ToString();
        string param2 = jObject["param2"].ToString(); 
        #endregion                
    }
    catch (Exception ex)
    {
        context.Response.Write("error");
    }
}

2.前台代码,data是json对象:

function PostSendParams() {
    $.ajax({
        type: "post",
        url: "Handler1.ashx",
        contentType: "application/json;charset=utf-8;",
        data: { contentType: "application/json", param2: 18 },
        dataType: "json",
        success:function(data) {
            alert("data=" + data);
        },
        error:function(error) {
            alert("error=" + error);
        }
    });
}

后台取值:

public void ProcessRequest(HttpContext context)
{
    try
    {
        #region Form取值(不行)
        //string contentType = context.Request.Form["contentType"].ToString();
        //string param2 = context.Request.Form["param2"].ToString();
        #endregion

        #region InputStream取值(不行)
        Stream stream = context.Request.InputStream;
        byte[] bytes = new byte[stream.Length];
        stream.Read(bytes, 0, bytes.Length);
        string parameters = Encoding.Default.GetString(bytes);
        JObject jObject = (JObject)JsonConvert.DeserializeObject(parameters);
        string contentType = jObject["contentType"].ToString();
        string param2 = jObject["param2"].ToString(); 
        #endregion                
    }
    catch (Exception ex)
    {
        context.Response.Write("error");
    }
}

3 get传值

前台代码,data是json字符串:

function GetSendParams() {
    $.ajax({
        type: "get",
        url: "Handler1.ashx",
        contentType: "application/json;charset=utf-8;",
        data: "{ \"contentType\": \"application/json\", \"param2\": \"18\" }",        
        dataType: "json",
        success: function (data) {
            alert("data=" + data);
        },
        error: function (error) {
            alert("error=" + error);
        }
    });
}

后台取值:

public void ProcessRequest(HttpContext context)
{
    try
    {
        #region QueryString取值(不行)
        //string contentType = context.Request.QueryString["contentType"].ToString();
        //string param2 = context.Request.QueryString["param2"].ToString();
        #endregion

        #region InputStream取值(不行)
        Stream stream = context.Request.InputStream;
        byte[] bytes = new byte[stream.Length];
        stream.Read(bytes, 0, bytes.Length);
        string parameters = Encoding.Default.GetString(bytes);
        JObject jObject = (JObject)JsonConvert.DeserializeObject(parameters);
        string contentType = jObject["contentType"].ToString();
        string param2 = jObject["param2"].ToString();
        #endregion
    }
    catch (Exception ex)
    {
        context.Response.Write("error");
    }
}

4.前台代码,data是json对象:

function GetSendParams() {
    $.ajax({
        type: "get",
        url: "Handler1.ashx",
        contentType: "application/json;charset=utf-8;",
        data: { contentType: "application/json", param2: 18 },
        dataType: "json",
        success: function (data) {
            alert("data=" + data);
        },
        error: function (error) {
            alert("error=" + error);
        }
    });
}

后台取值:

public void ProcessRequest(HttpContext context)
{
    try
    {
        #region QueryString取值(可以)
        string contentType = context.Request.QueryString["contentType"].ToString();
        string param2 = context.Request.QueryString["param2"].ToString();
        #endregion

        #region InputStream取值(不行)
        //Stream stream = context.Request.InputStream;
        //byte[] bytes = new byte[stream.Length];
        //stream.Read(bytes, 0, bytes.Length);
        //string parameters = Encoding.Default.GetString(bytes);
        //JObject jObject = (JObject)JsonConvert.DeserializeObject(parameters);
        //string contentType = jObject["contentType"].ToString();
        //string param2 = jObject["param2"].ToString();
        #endregion
    }
    catch (Exception ex)
    {
        context.Response.Write("error");
    }
}

总结
当contentType=application/json;charset=utf-8;时,post传值只有在data是json字符串后台用InputStream进行解析,才能获取参数; 
当contentType=application/json;charset=utf-8;时,get传值只有在data是json对象后台用QueryString进行解析,才能获取参数。

 

原文:https://blog.csdn.net/xiaouncle/article/details/74906321 
 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值