欢迎莅临 SUN WU GANG 的园子!!!

世上无难事,只畏有心人。有心之人,即立志之坚午也,志坚则不畏事之不成。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2021年3月12日

摘要: 一.定义:提到Web API特指ASP.NET Web API。 官方定义如下,强调两个关键点,即可以对接各种客户端(浏览器,移动设备),构建http服务的框架。 Web API在ASP.NET完整框架中地位如下图,与SignalR一起同为构建Service的框架。Web API负责构建http常规 阅读全文
posted @ 2021-03-12 14:47 sunwugang 阅读(50) 评论(0) 推荐(0) 编辑

摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace ZB.QueueSys.Common.Enum { 阅读全文
posted @ 2021-03-12 14:15 sunwugang 阅读(71) 评论(0) 推荐(0) 编辑

摘要: 创建第一个Web API项目 第一步: 第二步: 注:App_Start\WebApiConfig 第三步:创建Model、Controll,略 --分别创建对应实体 public class User { public int id { get; set; } public string name 阅读全文
posted @ 2021-03-12 10:58 sunwugang 阅读(75) 评论(0) 推荐(0) 编辑