进行Ajax调用并在ASP.NET MVC应用程序中返回布尔值

时间:2009-10-14 06:26:15

标签: javascript jquery asp.net-mvc ajax

我想在ASP.NET MVC应用程序中进行ajax调用(使用JQuery)并返回一个布尔值,我该怎么做?

由于

1 个答案:

答案 0 :(得分:13)

嗯,可能最好的解决方案是使用JSON序列化。

public ActionResult DoSomething(string parameter)
    {
        //do something with parameter
        bool result = true;
        return Json(new ActionInfo()
        {
            Success =result,     
        });
    }

ActionInfo只是一个带有一个属性的简单类,布尔成功。然后,jquery ajax调用:

$.ajax({
type: "POST",
url: "YourController/DoSomething?parameter=pValue",
data: {},
dataType: "json",
success: function(actionInfo) {

    alert(actionInfo.Success);

}});

希望这有帮助。