我试图向客户发出请求,如果客户不存在,则应该返回某种“未找到”页面。以下哪一个将是使用这种任务的最佳做法,为什么?
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(); }