常用的httpcontent

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用的httpcontent相关的知识,希望对你有一定的参考价值。

request 获取参数,response 响应, 

    public string getQueryStringString(string obj)
    {
        HttpRequest request = HttpContext.Current.Request;
        return getToString(request.QueryString[obj]);
    }

 这种获取参数的前端写法:

           $.ajax({
                type: ‘post‘,
                url: ‘mobile.ashx?type=login‘,
                data: {
                    "unname": $("#user").val()
                    , "upass": $("#password").val()
                },

  这种获取参数的前端写法:

    public string getFormString(string obj)
    {
        HttpRequest request = HttpContext.Current.Request;
        return getToString(request.Form[obj]);
    }

 

                var test = {
                    "test": picSrc
            , "type": "uploadimg1"
            , "tid": taskID
            , "imgname": $("#imgname" + imgtype).val() + date
                }

HttpContext.Current.Server.MapPath("xxxxxx");

以上是关于常用的httpcontent的主要内容,如果未能解决你的问题,请参考以下文章

如何从 HttpContent 检索 JSON 数据

HttpContent 在 try 和 catch 之间得到处理

常用python日期日志获取内容循环的代码片段

C#常用代码片段备忘

找不到如何使用 HttpContent

找不到如何使用 HttpContent