WebAPI获取客户端POST请求数据

2021-04-08 18:26

阅读:659

标签:empty   ict   cti   ext   eva   byte   close   ret   写入   

POST - 向指定的资源提交要被处理的数据

1.什么是WebAPI,详见:http://www.cxyclub.cn/n/25123/

 

///


/// 获取post过来的数据
///

/// 返回解析的参数和值
[HttpPost]
private string GetResponseVal()
{
SortedDictionary sorted = new SortedDictionary();

var request = HttpContext.Current.Request;
Stream resStream = request.InputStream;
int len = (int)resStream.Length;//post数据长度
string res = string.Empty;
if (len != 0)
{
byte[] inputByts = new byte[len];//字节数据,用于存储post数据
resStream.Read(inputByts, 0, len);//将post数据写入byte数组中s
resStream.Close();
res = Encoding.UTF8.GetString(inputByts);//转为UTF8编码

}
return res;
}

WebAPI获取客户端POST请求数据

标签:empty   ict   cti   ext   eva   byte   close   ret   写入   

原文地址:https://www.cnblogs.com/xuleizi/p/9076508.html


评论


亲,登录后才可以留言!