<httpRuntime executionTimeout="600" maxRequestLength="102400" requestValidationMode="2.0"/>
主要需要加上的属性 为 requestValidationMode="2.0"
第二步为在控制器上打上特性
[HttpPost] [ValidateInput(false)] public JsonResult AddGoods(Goods goods) { return Json(“OK”); }
剩下的就是前端的事情了