码迷,mamicode.com
首页 > 其他好文 > 详细

HTTP请求返回类

时间:2014-06-18 10:57:07      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   color   

  在学习《构建具有CRUD功能的ASP.NET Web API》一文中,通过产品ID获得产品信息的方法如下:

1 public Product GetProduct(int id)
2 {
3     Product item = repository.Get(id);
4     if (item == null)
5     {
6         throw new HttpResponseException(HttpStatusCode.NotFound); 
7     }
8     return item;
9 }

  但在调试过程中,若查出item为null,则程序在第8行报错,提示没有对对象为null的情况进行处理,通过在网上查找资料,并结合处理mvc 4 web api中没有IHttpActionResult接口的方法,采用HttpResponseMessage进行返回,具体代码如下:

1 public HttpResponseMessage GetProduct(int id)
2 {
3     Product item = repository.Get(id);
4     if (item == null)
5     {
6         return Request.CreateResponse(HttpStatusCode.NotFound); 
7     }
8     return Request.CreateResponse(HttpStatusCode.OK, item);
9 }

调试通过

HTTP请求返回类,布布扣,bubuko.com

HTTP请求返回类

标签:style   class   blog   code   http   color   

原文地址:http://www.cnblogs.com/lion0323/p/3793030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!