gpt4 book ai didi

javascript - 在 ASP.NET MVC 应用程序中进行 Ajax 调用并返回 bool 值

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:58:08 25 4
gpt4 key购买 nike

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

谢谢

最佳答案

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

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

ActionInfo 只是一个具有一个属性的简单类, bool 值 Success。然后,jquery ajax 调用:

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

alert(actionInfo.Success);

}});

希望这对您有所帮助。

关于javascript - 在 ASP.NET MVC 应用程序中进行 Ajax 调用并返回 bool 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1564561/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com