我面臨着處理MVC 4 webAPI中的錯誤的大問題。在這裏,我想驗證傳入的請求併發回BadRequest響應。HttpResponseException
對於我使用的代碼
public Product GetProduct(int id)
{
Product item = repository.Get(id);
if (item == null)
{
throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.NotFound));
}
return item;
}
但在空號的情況下,VS2010會產生像
「HTTP請求導致的異常處理其他錯誤,請查看HTTP詳情請參閱此例外的'Response'屬性返回的響應。
我該如何解決這個問題提前
感謝....
您用哪個URL調用操作GetProduct? – 2012-08-14 07:42:18