Im使用
JSON从一个窗体和ModelState.isValid()返回false的数据发布数据,我为所有传入的数据放置一个WriteLine,一切都看起来很好的数据明智,有没有办法显示模型状态错误,以找出什么是无效的?
这个确切的代码与其他型号正常工作
这个确切的代码与其他型号正常工作
[HttpPost] public ActionResult mobileCreateAction(Trip trip) { if (ModelState.IsValid) { System.Diagnostics.Debug.WriteLine("saving"); DB.Trips.Add(trip); DB.SaveChanges(); return Json(new { success = true,msg = "Success saving trip" }); } else { System.Diagnostics.Debug.WriteLine("invalid model state"); return Json(new { success = false,msg = "Error saving trip" },JsonRequestBehavior.AllowGet); } }
谢谢