码迷,mamicode.com
首页 > Web开发 > 详细

asp.net中后台获取Post参数(Json)最简单的一种方法。

时间:2021-06-02 15:32:03      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:答案   toe   end   简单   等等   多个   return   reader   rgb   

哈喽小伙伴们大家好,

在日常开发中,有很多时候,或者某些情况下在一些Post接口里面参数都是用json 作为收发协议

而这时也不确定后续的格式是否会有调整等等出于其他考虑,所以不在Controller里直接写对应的参数Entity。

那么怎么获取对方Post过来的值呢?

 

答案其实很简单,复制粘贴以下这段代码。可以被多个方法公用。

 

public class PostHelper
    {
        public static string GetQueryString()
        {
            using (Stream postData = HttpContext.Current.Request.InputStream)
            {
                using (StreamReader sRead = new StreamReader(postData, Encoding.UTF8))
                {
                    return sRead.ReadToEnd();
                }
            }
        }
    }

没错,这样就可以了,特别简单。

快拿去用吧 

 

asp.net中后台获取Post参数(Json)最简单的一种方法。

标签:答案   toe   end   简单   等等   多个   return   reader   rgb   

原文地址:https://www.cnblogs.com/SevenWang/p/14824988.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!