WebApi入门

WebApi实质上是进行数据处理和返回的一个服务,在前后分离的工程中起着关键性的桥梁作用

新建WebApi工程

打开visual studio,ctrl+shift+N新建WebApi项目

新建一个空项目,先不要勾选 为HTTPS位置

在vs给我们创建的工程项目中,HomeController实际上是MVC模块的Controller

ApiController才是我们所需要进行业务开发的地方

F10运行项目,会看到WebApi的Home Page页面,里面展示了一系列的向导


在浏览器地址输入http://localhost:61035/api/result,会发现,页面返回了一个XML

但是我们在实际的业务开发中,都是用的JSON格式的数据,那么我们用postman访问这个地址试试



会发现接口返回的是JSON格式的数据

这个返回的数据是怎么实现的呢,我们打开工程的Controllers/ValuesController.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;

namespace WebApi.Controllers
{
    public class ValuesController : ApiController
    {
        // GET api/values 
        //这里可以看到我们在请求地址的时候,实际上触发了这个行为(action)
        public IEnumerable<string> Get()
        {
            return new string[] { "value1", "value2" };
        }
        // GET api/values/5 这里传入的id参数,
        //也就是说如果我们请求http://localhost:61035/api/values/1
        //或者http://localhost:61035/api/values/1地址的时候
        //接口会返回一个"value"的字符串
        public string Get(int id)
        {
            return "value";
        }
    }
}

那么http://localhost:61035/api/values/中的api这又是从何而来的呢?
我们打开APP_Start/WebApiConfig.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;

namespace WebApi
{
    public static class WebApiConfig
    {
        public static void Register(HttpConfiguration config)
        {
            // Web API 配置和服务

            // Web API 路由
            config.MapHttpAttributeRoutes();

            config.Routes.MapHttpRoute(
                //name在一个项目中不允许重复
                name: "DefaultApi",
                //api实际上就是访问controller的前一级,如果我们把api改成aaa,那么我们访问api/后面的任何接口都是无效的
                //{controller}controller实际上就是Controller文件夹下面的XXXXController类文件的前缀
                //{id}实际上就是请求controller里面类方法所传递的参数,默认是可选的
                routeTemplate: "api/{controller}/{id}",  //
                defaults: new { id = RouteParameter.Optional }
            );
        }
    }
}

通过上面的分析,我们可以发现,ValuesController 上通过定义不同的方法,并且及进行方法的重载,实现了有参、无参、参数的Get请求

通过对此分析,我们模拟一个自定义的Controller来实现接口的数据请求
首先在Models中新建一个Student.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace WebApi.Models
{
    public class Student
    {
        public int Id { get; set; }
        public string Name { get; set; }
    }
}

然后在Controller右键-添加-控制器-Web Api-Web Api2 控制器-空

image.png

命名为StudentsController,注意Controller一定不要省略,否则接口无法生效

StudentsController编写如下代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using WebApi.Models;

namespace WebApi.Controllers
{
    public class StudentsController : ApiController
    {
        public Student Get()
        {
            return new Student(){Id = 1,Name = "kysin"}
        }
    }
}

可以看到返回了一个对象,而数组的内容就是我们return出去的这个Student对象
用postman测试请求

如果想返回一个数组怎么办呢
编写如下代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using WebApi.Models;

namespace WebApi.Controllers
{
    public class StudentsController : ApiController
    {
        public List<Student> Get()
        {
            return new List<Student>()
            { 
                new Student() { Id = 1, Name = "kysin1" },
                new Student() { Id = 2, Name = "kysin2" },
                new Student() { Id = 3, Name = "kysin3" },
                new Student() { Id = 4, Name = "kysin4" },
                new Student() { Id = 5, Name = "kysin5" }
            };
        }
}

用postman测试请求可以看到返回了一个数组,而数组的内容就是我们return出去的这个List集合

继续编写StudentsController

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using WebApi.Models;

namespace WebApi.Controllers
{
    public class StudentsController : ApiController
    {
        public string GetName(string name)
        {
            return "你传入的参数是" + name;
        }
        public string GetAddress(string address)
        {
            return "你传入的地址是" + address;
        }
    }
}

分别用postman测试

如果我们去掉这个Get前缀呢

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using WebApi.Models;

namespace WebApi.Controllers
{
    public class StudentsController : ApiController
    {
        public string Address(string address)
        {
            return "你传入的地址是" + address;
        }
    }
}

因此可以看到,WebApi通过Get前缀的方式进行http请求的类型识别,这种必须以get、post、delet、put等前缀方式请求格式为restful方式

参数传递分析

Get的参数传递

在http中,以get方式请求的参数实际上是通过url后面拼接参数的键名=键值来完成传递的,那么在webapi中就对应请求的参数就是通过方法的参数来自动进行获取

但是对于body而言,数据既可以放在url里面拼接,也可以放在body中进行传递,那么在webapi中我们应该如何进行代码编写呢

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using WebApi.Models;

namespace WebApi.Controllers
{
    public class StudentsController : ApiController
    {
        public void Post(Student stu)
        {
            return "成功"
        }
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 219,110评论 6 508
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 93,443评论 3 395
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 165,474评论 0 356
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,881评论 1 295
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,902评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,698评论 1 305
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,418评论 3 419
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,332评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,796评论 1 316
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,968评论 3 337
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 40,110评论 1 351
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,792评论 5 346
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,455评论 3 331
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 32,003评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 33,130评论 1 272
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,348评论 3 373
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 45,047评论 2 355

推荐阅读更多精彩内容