gpt4 book ai didi

ASP.NET MVC : Redirecting back to page when no parameter is given to URL

转载 作者:行者123 更新时间:2023-12-01 07:49:52 25 4
gpt4 key购买 nike

http://localhost:50034/Admin/Delete/723

执行 Action 总是需要这个参数,但是,如果你去的 URL 没有这个参数,就会发生异常。你如何处理这个并重定向回主页而不做任何事情?

谢谢。

最佳答案

我不确定你的意思,你的意思是 url http://localhost:50034/Admin/Delete/正在生成异常?

尝试将 id 参数设置为可为空,如下所示:

public class MyController : Controller
{
public void Delete(int? id)
{
if (!id.HasValue)
{
return RedirectToAction("Index", "Home");
}

///
}
}

关于ASP.NET MVC : Redirecting back to page when no parameter is given to URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/272454/

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