是否可以从ASP.NET控制器返回布尔值。我写了这个:
public class HomeController : Controllewe
{
public ActionResult Check()
{
var check = new CheckAD();
if (check.CheckSecurityWithAD())
{
...
return Json(true);
}
else
{
...
return Json(false);
}
}
}
我想比较if语句中的返回值。我尝试过这种方式:
@if (@Html.Action("Check", "Home") == true)
{
....
}
但是我得到了错误cannot apply operator '==' to operands of type string and boolean
。我该如何解决?感谢
Json(..)
返回一个字符串。试试你的观点,比如:
@if (@Html.Action("Check", "Home") == "true")
{
....
}
或
@if (bool.Parse(@Html.Action("Check", "Home")) == true)
{
....
}