加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ajax设置contentType=json后台获取不到参数

发布时间:2020-12-16 03:23:49 所属栏目:百科 来源:网络整理
导读:ajax中的contentType有多种类型,默认是contentType=application/x-www-form-urlencoded;charset=utf-8;,如果设置contentType=application/json;charset=utf-8;那就会发生在后台无法通过context.Request.Form[]获取参数的情况,下面我就post、get两种方式进

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

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

前台代码,data是json对象:

function PostSendParams() {
    $.ajax({
        type: "post",data: { contentType: "application/json",param2: 18 },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,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");
    }
}

get传值

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

function GetSendParams() {
    $.ajax({
        type: "get",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,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");
    }
}

前台代码,data是json对象:

function GetSendParams() {
    $.ajax({
        type: "get",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,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进行解析,才能获取参数。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读