标签:val pre key color odi body utf8 byte nbsp
Stream stream = HttpContext.Request.Body; byte[] buffer = new byte[HttpContext.Request.ContentLength.Value]; await stream.ReadAsync(buffer, 0, buffer.Length); string content = Encoding.UTF8.GetString(buffer);
知道body中的参数名字时
Request.Form["keyname"]
需要url解码时
System.Web.HttpUtility.UrlDecode(content,Encoding.UTF8);
标签:val pre key color odi body utf8 byte nbsp
原文地址:https://www.cnblogs.com/carlpeng/p/14241137.html