Asp.net WebAPI 构建后台数据接口

1.新建项目

Asp.net WebAPI 构建后台数据接口_第1张图片

2.选择WebApi,并使用空模板(这里不想要一些其他的mvc的东西)

Asp.net WebAPI 构建后台数据接口_第2张图片

3.新建一个model

Asp.net WebAPI 构建后台数据接口_第3张图片

Asp.net WebAPI 构建后台数据接口_第4张图片

4.写几个属性

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

namespace APITest.Models
{
    public class Test
    {
        public int id { set; get; }
        public string name { set; get; }
    }
}

5.新增控制器

Asp.net WebAPI 构建后台数据接口_第5张图片

Asp.net WebAPI 构建后台数据接口_第6张图片

这里也用了空的控制器,避免多余代码干扰,其实后期可以写CodeSmith模板生成。

6.添加代码

Asp.net WebAPI 构建后台数据接口_第7张图片

using System.Collections.Generic;

using System.Linq;

using System.Web.Http;

using WebApplication3.Models;



namespace WebApplication3.Controllers

{

public class TestController : ApiController

{

Test[] products = new Test[]

{

new Test { id = 1, name = "Tomato Soup"},

new Test { id = 2, name = "Yo-yo" },

new Test { id = 3, name = "Hammer" }

};



public IEnumerable GetAllProducts()

{

return products;

}



public IHttpActionResult GetProduct(int id)

{

var product = products.FirstOrDefault((p) => p.id == id);

if (product == null)

{

return NotFound();

}

return Ok(product);

}



[HttpPost]

public IHttpActionResult PostTest([FromBody]Test t)

{

var product = products.FirstOrDefault((p) => p.id == t.id);

if (product == null)

{

return NotFound();

}

return Ok(product);

}

}

}

7.运行页面

Asp.net WebAPI 构建后台数据接口_第8张图片
这里注意路由规则,api/控制器名称/id

8. 增加下面两句,返回JSON格式的

Asp.net WebAPI 构建后台数据接口_第9张图片
其实就是修改Config的Formatter,使用JsonMediaTypeFormatter就好了。

设置WebApiConfig.cs后:
Asp.net WebAPI 构建后台数据接口_第10张图片





1. Post调用

Asp.net WebAPI 构建后台数据接口_第11张图片
当然也可以直接从Form中取值。例如:$(“#SearchForm”).serialize(),

2.能查询当然也能够进行增删改喽。

3. WebApi只有路由等基本框架,数据库操作完全可以自行选择,ADO.net, EF,nhibernate都可以。

你可能感兴趣的:(.Net)