提问人:spalMcc 提问时间:11/10/2023 最后编辑:marc_sspalMcc 更新时间:11/10/2023 访问量:26
如何在 ASP.NET Core 6 MVC Web 控制器单一方法中处理多种返回类型?
How to handle multiple return types in ASP.NET Core 6 MVC web controller single method?
问:
[HttpGet]
public ActionResult Index()
{
model = myMethod(loggedInUserName);
if (model != null)
{
return View(model);
}
else
{
RedirectToAction("Index", "Error");// Just want to re-direct to Error Controller
}
}
我需要处理上述情况。类型不正确,因为我也在使用。ActionResult
RedirectToAction("Index", "Error")
任何意见都会有所帮助。
此致敬意
答: 暂无答案
评论
return
else
else
if