我通过jquery提交了一个表单,但我需要ActionResult返回true或false。
[HttpPost] public ActionResult SetSchedule(FormCollection collection) { try { // TODO: Add update logic here return true; //cannot convert bool to actionresult } catch { return false; //cannot convert bool to actionresult } }
解决方法
你可以返回一个json结果的形式bool或与bool属性。这样的东西:
[HttpPost] public ActionResult SetSchedule(FormCollection collection) { try { // TODO: Add update logic here return Json(true); } catch { return Json(false); } }