博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Asp.net WebApi 项目示例(增删改查)
阅读量:6603 次
发布时间:2019-06-24

本文共 5572 字,大约阅读时间需要 18 分钟。

1.WebApi是什么

    ASP.NET Web API 是一种框架,用于轻松构建可以由多种客户端(包括浏览器和移动设备)访问的 HTTP 服务。ASP.NET Web API 是一种用于在 .NET Framework 上构建 RESTful 应用程序的理想平台。

    可以把WebApi看成Asp.Net项目类型中的一种,其他项目类型诸如我们熟知的WebForm项目,Windows窗体项目,控制台应用程序等。

    WebApi类型项目的最大优势就是,开发者再也不用担心客户端和服务器之间传输的数据的序列化和反序列化问题,因为WebApi是强类型的,可以自动进行序列化和反序列化,一会儿项目中会见到。

    下面我们建立了一个WebApi类型的项目,项目中对产品Product进行增删改查,Product的数据存放在List<>列表(即内存)中。

2.页面运行效果

如图所示,可以添加一条记录; 输入记录的Id,查询出该记录的其它信息; 修改该Id的记录; 删除该Id的记录。

3.二话不说,开始建项目

1)新建一个“ASP.NET MVC 4 Web 应用程序”项目,命名为“ProductStore”,点击确定,如图

2)选择模板“Web API”,点击确定,如图

3)和MVC类型的项目相似,构建程序的过程是先建立数据模型(Model)用于存取数据, 再建立控制器层(Controller)用于处理发来的Http请求,最后构造显示层(View)用于接收用户的输入和用户进行直接交互。

 

     这里我们先在Models文件夹中建立产品Product类: Product.cs,如下:

using System;using System.Collections.Generic;using System.Linq; using System.Web; namespace ProductStore.Models { public class Product { public int Id { get; set; } public string Name { get; set; } public string Category { get; set; } public decimal Price { get; set; } } }

4)试想,我们目前只有一个Product类型的对象,我们要编写一个类对其实现增删改查,以后我们可能会增加其他的类型的对象,再需要编写一个对新类型的对象进行增删改查的类,为了便于拓展和调用,我们在Product之上构造一个接口,使这个接口约定增删改查的方法名称和参数,所以我们在Models文件夹中新建一个接口:  IProductRepository.cs ,如下:

using System;using System.Collections.Generic;using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProductStore.Models { interface IProductRepository { IEnumerable
GetAll(); Product Get(int id); Product Add(Product item); void Remove(int id); bool Update(Product item); } }

5)然后,我们实现这个接口,在Models文件夹中新建一个类,具体针对Product类型的对象进行增删改查存取数据,并在该类的构造方法中,向List<Product>列表中存入几条数据,这个类叫:ProductRepository.cs,如下:

using System;using System.Collections.Generic;using System.Linq; using System.Web; namespace ProductStore.Models { public class ProductRepository:IProductRepository { private List
products = new List
(); private int _nextId = 1; public ProductRepository() { Add(new Product { Name="Tomato soup",Category="Groceries",Price=1.39M}); Add(new Product { Name="Yo-yo",Category="Toys",Price=3.75M}); Add(new Product { Name = "Hammer", Category = "Hardware", Price = 16.99M }); } public IEnumerable
GetAll() { return products; } public Product Get(int id) { return products.Find(p=>p.Id==id); } public Product Add(Product item) { if (item == null) { throw new ArgumentNullException("item"); } item.Id = _nextId++; products.Add(item); return item; } public void Remove(int id) { products.RemoveAll(p=>p.Id==id); } public bool Update(Product item) { if (item == null) { throw new ArgumentNullException("item"); } int index = products.FindIndex(p=>p.Id==item.Id); if (index == -1) { return false; } products.RemoveAt(index); products.Add(item); return true; } } }

此时,Model层就构建好了。

6)下面,我们要构建Controller层,在此之前,先回顾一下Http中几种请求类型,如下

 

     get  类型  用于从服务器端获取数据,且不应该对服务器端有任何操作和影响

     post 类型  用于发送数据到服务器端,创建一条新的数据,对服务器端产生影响

     put 类型  用于向服务器端更新一条数据,对服务器端产生影响 (也可创建一条新的数据但不推荐这样用)

     delete 类型 用于删除一条数据,对服务器端产生影响

 

     这样,四种请求类型刚好可对应于对数据的 查询,添加,修改,删除。WebApi也推荐如此使用。在WebApi项目中,我们请求的不再是一个具体页面,而是各个控制器中的方法(控制器也是一种类,默认放在Controllers文件夹中)。下面我们将要建立一个ProductController.cs控制器类,其中的方法都是以“Get Post Put Delete”中的任一一个开头的,这样的开头使得Get类型的请求发送给以Get开头的方法去处理,Post类型的请求交给Post开头的方法去处理,Put和Delete同理。

    而以Get开头的方法有好几个也是可以的,此时如何区分到底交给哪个方法执行呢?这就取决于Get开头的方法们的传入参数了,一会儿在代码中可以分辨。    构建Controller层,在Controllers文件夹中建立一个ProductController.cs控制器类,如下:

using System;using System.Collections.Generic;using System.Linq; using System.Web; using System.Web.Mvc; using ProductStore.Models; using System.Web.Http; using System.Net; using System.Net.Http; namespace ProductStore.Controllers { public class ProductsController : ApiController { static readonly IProductRepository repository = new ProductRepository(); //GET: /api/products public IEnumerable
GetAllProducts() { return repository.GetAll(); } //GET: /api/products/id public Product GetProduct(int id) { Product item = repository.Get(id); if (item == null) { throw new HttpResponseException(HttpStatusCode.NotFound); } return item; } //GET: /api/products?category=category public IEnumerable
GetProductsByCategory(string category) { return repository.GetAll().Where(p=>string.Equals(p.Category,category,StringComparison.OrdinalIgnoreCase)); } //POST: /api/products public HttpResponseMessage PostProduct(Product item) { item = repository.Add(item); var response = Request.CreateResponse
(HttpStatusCode.Created,item); string uri = Url.Link("DefaultApi", new { id=item.Id}); response.Headers.Location = new Uri(uri); return response; } //PUT: /api/products/id public void PutProduct(int id, Product product) { product.Id = id; if (!repository.Update(product)) { throw new HttpResponseException(HttpStatusCode.NotFound); } } //Delete: /api/products/id public void DeleteProduct(int id) { Product item = repository.Get(id); if (item == null) { throw new HttpResponseException(HttpStatusCode.NotFound); } repository.Remove(id); } } }

使该类继承于ApiController类,在其中实现处理各种Get,Post,Put,Delete类型Http请求的方法。

每一个方法前都有一句注释,标识了该方法的针对的请求的类型(取决于方法的开头),以及要请求到该方法,需要使用的url。

这些url是有规律的,见下图:

api是必须的,products对应的是ProductsControllers控制器,然后又Http请求的类型和url的后边地址决定。

这里,我们除了第三个“Get a product by category”,其他方法都实现了。

7)最后,我们来构建View视图层,我们更改Views文件夹中的Home文件夹下的Index.cshtml文件,这个文件是项目启动页,如下:

添加记录

Name:
Category:
Price:

修改记录

Id:
Name:
Category:
Price:

8)然后我们给页面添加js代码,对应上面的按钮事件,用来发起Http请求,如下:

转载于:https://www.cnblogs.com/itjeff/p/5452964.html

你可能感兴趣的文章
http协议初学
查看>>
Struts2 OGNL
查看>>
PHP-解决sql注入***的方法
查看>>
「运维必看」一篇最通熟易懂的性能调优总结!
查看>>
资源-常用网站地址
查看>>
Lync 小技巧-38-Lync Server 2013与Exchange Server高可用环境-集成
查看>>
02-准备实验环境-001-安装 VMware Workstation 15
查看>>
linux系统下源码安装Apache2.4
查看>>
SHA1算法升级SHA256更新计划
查看>>
Patch OpenSSL使其支持CHACH20_POLY1305加密算法
查看>>
VM虚拟机安装win7
查看>>
VMWare vShere/ESX硬盘的后置备与精简配置之间的转换
查看>>
time_wait和close_wait产生原因及解决
查看>>
python核心编程 -chapter 13
查看>>
业主关心的问题,监理干了什么,监理单位具体回答
查看>>
Ubuntu安装bbr教程
查看>>
我的友情链接
查看>>
linux批量替换文件内容3种方法(perl,sed,shell)
查看>>
Operations Manager 2012 SP1配置部署系列之(一) 单服务器的部署
查看>>
binder 驱动
查看>>