.net core webaip 配置全局路由并获取 post json 的json数据

1,配置路由

在 Startup 类下的 Configure 函数下添加

            app.UseMvc(routes=> 
            {
                routes.MapRoute(name: "default", template: "{controller=Home}/{action=Index}/{id?}");
            });

 

3,

   [HttpPost]
        public IActionResult Index()
        {
            HttpContext.Response.ContentType = "application/json";
            string json = "";
            using (var sr = new StreamReader(Request.Body,Encoding.UTF8))
            {
                var v =sr.ReadToEndAsync();//或者sr.ReadToEnd()
                v.Wait();
                json = v.Result;
            }
            return Content(json);
        }

你可能感兴趣的:(.net,core)