WebAPI获取客户端POST请求数据
2021-04-08 18:26
标签:empty ict cti ext eva byte close ret 写入 POST - 向指定的资源提交要被处理的数据 1.什么是WebAPI,详见:http://www.cxyclub.cn/n/25123/ /// var request = HttpContext.Current.Request; WebAPI获取客户端POST请求数据 标签:empty ict cti ext eva byte close ret 写入 原文地址:https://www.cnblogs.com/xuleizi/p/9076508.html
/// 获取post过来的数据
///
///
[HttpPost]
private string GetResponseVal()
{
SortedDictionary
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请求数据
文章链接:http://soscw.com/index.php/essay/72982.html