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

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – ASP.NET MVC – HttpException或返回视图?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图向客户发出请求,如果客户不存在,则应该返回某种“未找到”页面。以下哪一个将是使用这种任务的最佳做法,为什么?
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

原文链接:https://www.f2er.com/aspnet/253057.html

猜你在找的asp.Net相关文章