我想在ASP.NET MVC应用程序中进行ajax调用(使用JQuery)并返回一个布尔值,我该怎么做?
由于
答案 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);
}});
希望这有帮助。