加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

asp.net-mvc – ASP.NET MVC – HttpException或返回视图?

发布时间:2020-12-16 00:44:00 所属栏目:asp.Net 来源:网络整理
导读:我试图向客户发出请求,如果客户不存在,则应该返回某种“未找到”页面。以下哪一个将是使用这种任务的最佳做法,为什么? public ActionResult Index(int id){ if (customerService.GetCustomerById(id) == null) return View("NotFound"); return View();}
我试图向客户发出请求,如果客户不存在,则应该返回某种“未找到”页面。以下哪一个将是使用这种任务的最佳做法,为什么?
public ActionResult Index(int id)
{
    if (customerService.GetCustomerById(id) == null)
        return View("NotFound");

    return View();
}

要么

public ActionResult Index(int id)
{
    if (customerService.GetCustomerById(id) == null)
        throw new HttpException(404,"Customer not found");

    return View();
}

解决方法

抛出一个404.真的没有论据。这不是一个REST门徒,它只是网络的工作原理。

您可以返回一个视图和一个404.帮助用户或呈现搜索框或指向某些畅销商品通常是有帮助的,但是将NotFound清除给客户,并始终在HTTP响应中返回404。没有问题。

编辑:这是很好的指导:http://www.codinghorror.com/blog/2007/03/creating-user-friendly-404-pages.html

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读