jquery – 返回bool从asp.net mvc actionresult

前端之家收集整理的这篇文章主要介绍了jquery – 返回bool从asp.net mvc actionresult前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我通过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
        }
    }

我如何设计我的JQuery调用来传递表单数据,并检查返回值是真还是假。如何编辑上面的代码以返回true或false?

解决方法

你可以返回一个json结果的形式bool或与bool属性。这样的东西:
[HttpPost]
public ActionResult SetSchedule(FormCollection collection)
{
    try
    {
        // TODO: Add update logic here

        return Json(true);
    }
    catch
    {
        return Json(false);
    }
}
原文链接:https://www.f2er.com/jquery/184546.html

猜你在找的jQuery相关文章