【发布时间】:2011-07-07 11:59:56
【问题描述】:
我想知道向浏览器报告将向用户显示的应用程序或模型状态错误的最佳做法是什么。你能抛出一个异常并在jquery post的错误处理程序中处理它吗?例如,考虑这种方法:
[HandlerErrorWithAjaxFilter, HttpPost]
public ActionResult RetrievePassword(string email)
{
User user = _userRepository.GetByEmail(email);
if (user == null)
throw new ClientException("The email you entered does not exist in our system. Please enter the email address you used to sign up.");
string randomString = SecurityHelper.GenerateRandomString();
user.Password = SecurityHelper.GetMD5Bytes(randomString);
_userRepository.Save();
EmailHelper.SendPasswordByEmail(randomString);
if (Request.IsAjaxRequest())
return Json(new JsonAuth { Success = true, Message = "Your password was reset successfully. We've emailed you your new password.", ReturnUrl = "/Home/" });
else
return View();
}
这种情况下用户为空时抛出异常是否正确?或者我应该这样做并在 jquery 帖子的成功处理程序中处理它:
return Json(new JsonAuth { Success = false, Message = "The email you entered does not exist in our system. Please enter the email address you used to sign up.", ReturnUrl = "/Home/" });
【问题讨论】:
标签: .net jquery asp.net asp.net-mvc asp.net-mvc-2