一、webapi

1.在webapiconfig中移除xml的返回格式,返回格式就自动使用Json格式 
config.Formatters.Remove(config.Formatters.XmlFormatter);

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http; namespace WebApplication2
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{ //移除XML格式,返回值自动就变成json格式
config.Formatters.Remove(config.Formatters.XmlFormatter);
// Web API 配置和服务 //Web API 路由
config.MapHttpAttributeRoutes();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}
}
}

 2.创建一个pig的控制器

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http; namespace WebApplication2.Controllers
{
public class PigController : ApiController
{
//GET: api/Pig
//public IEnumerable<string> Get()
//{
// return new string[] { "大pig", "value2" };
//}
public Pig Get()
{
Pig pig = new Pig()
{
Age = 1,
Name = "大黄狗"
};
return pig;
} //GET: api/Pig/5
public string Get(int id)
{
return "value";
} //POST: api/Pig
public void Post([FromBody]string value)
{
} //PUT: api/Pig/5
public void Put(int id, [FromBody]string value)
{
}
//DELETE: api/Pig/5
public void Delete(int id)
{
}
}
}

3.发布webapi网站,url=http://localhost:34050/api/Pig

二、客户端调用

新建一个网站,简单一点,就用web窗体,代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls; namespace WebApplication1
{
using System.Net;
public partial class Pig : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//1.0请求的webapi的url:http://localhost:34050/api/Pig
//1.0构造一个制定url请求对象
WebRequest request = WebRequest.Create("http://localhost:34050/api/Pig");
//2.0指定请求的方法为get
request.Method = "Get";
//3.0发出请求获取相应对象
WebResponse response = request.GetResponse(); //4.0获取相应报文体中的数据
System.IO.Stream st = response.GetResponseStream(); //5.0将st转换成字符串
string resStr = string.Empty;
using (System.IO.StreamReader sr = new System.IO.StreamReader(st))
{
//从当前流的开始位置读至结束位置
resStr = sr.ReadToEnd();//{"Age":1,"Name":"大黄狗"}
} //6.0将结果绑定到Grid上
//将json格式的字符串反序列化成集合
System.Web.Script.Serialization.JavaScriptSerializer jsoner = new System.Web.Script.Serialization.JavaScriptSerializer();
ResultPig rpig= jsoner.Deserialize<ResultPig>(resStr);
//如果结果是[{},{}]
//jsoner.Deserialize<List<ResultPig>>(resStr);
List<ResultPig> list = new List<ResultPig>() { rpig };
GridView1.DataSource = list;
GridView1.DataBind(); //Response.Write(resStr);
}
}
public class ResultPig
{
public int Age { get; set; }
public string Name { get; set; }
}
}

  

  

 

WEBAPI 的简单示例的更多相关文章

  1. Linux下的C Socket编程 -- server端的简单示例

    Linux下的C Socket编程(三) server端的简单示例 经过前面的client端的学习,我们已经知道了如何创建socket,所以接下来就是去绑定他到具体的一个端口上面去. 绑定socket ...

  2. C# 构建XML(简单示例)

    C# 构建XML的简单示例: var pars = new Dictionary<string, string> { {"url","https://www. ...

  3. 根据juery CSS点击一个标签弹出一个遮罩层的简单示例

    <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <m ...

  4. ACEXML解析XML文件——简单示例程序

    掌握了ACMXML库解析XML文件的方法后,下面来实现一个比较完整的程序. 定义基本结构 xml文件格式如下 <?xml version="1.0"?> <roo ...

  5. demo工程的清单文件及activity中api代码简单示例

    第一步注册一个账户,并创建一个应用.获取app ID与 app Key. 第二步下载sdk 第三步新建工程,修改清单文件,导入相关的sdk文件及调用相应的api搞定. 3.1 修改清单文件,主要是加入 ...

  6. spring-servlet.xml简单示例

    spring-servlet.xml简单示例 某个项目中的spring-servlet.xml 记下来以后研究用 <!-- springMVC简单配置 --> <?xml versi ...

  7. SignalR 简单示例

    一.什么是 SignalR ASP.NET SignalR is a library for ASP.NET developers that simplifies the process of add ...

  8. Web API 简单示例

    一.RESTful和Web API Representational State Transfer (REST) is a software architecture style consisting ...

  9. XML引入多scheme文件约束简单示例

    XML引入多scheme文件约束简单示例,用company.xsd和department.xsd来约束company.xml: company.xsd <?xml version="1 ...

随机推荐

  1. 关于SSH不能连接及报错的问题总结

    前言 此文不涉及到因网络.防火墙设备而导致的SSH不能访问.运维常见问题,这里不做过多的讲解,主要讲讲出了大家所知道的,还有其他什么原因会导致SSH无法访问呢?好了,那么,如果想知道的话,那就继续往下 ...

  2. 【noip模拟赛6】收入计划 最大值的最小值 二分答案

    描述 高考结束后,同学们大都找到了一份临时工作,渴望挣得一些零用钱.从今天起,Matrix67将连续工作N天(1<=N<=100 000).每一天末他可以领取当天及前面若干天里没有领取的工 ...

  3. 用js来实现那些数据结构02(数组篇02-数组方法)

    上一篇文章简单的介绍了一下js的类型,以及数组的增删方法.这一篇文章,我们一起来看看数组还有哪些用法,以及在实际工作中我们可以用这些方法来做些什么.由于其中有部分内容并不常用,所以我尽量缩小篇幅.在这 ...

  4. 在deepin中安装docker

    用往常方法安装 一般在Linux中安装docker的时候都会使用这条命令 wget -qO- https://get.docker.com/ | sh 而在deepin这么做缺不行 打开网址即可发现支 ...

  5. 潭州课堂25班:Ph201805201 WEB 之 JS 第五课 (课堂笔记)

    算数运算符 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF ...

  6. [SNOI2017]一个简单的询问

    [SNOI2017]一个简单的询问 题目大意: 给定一个长度为\(n(n\le50000)\)的序列\(A(1\le A_i\le n)\),定义\(\operatorname{get}(l,r,x) ...

  7. 2016年3月4日Android实习笔记

    1.让水平LinearLayout中的两个子元素分别居左和居右 在LinearLayout中有两个子元素,LinearLayout的orientation是horizontal.需要让第一个元素居左, ...

  8. JS 显示周 几和 月 日

    function getMyDay(date){ var week; ; var day = date.getDate(); ) week="周日" ) week="周一 ...

  9. Unsupported major.minor version ,

      一.错误现象: 当改变了jdk版本时,在编译java时,会遇到Unsupported major.minor version错误. 错误信息如下 : Unsupported major.minor ...

  10. Git Windows 安装

    环境 Windows版本:Windows 7 旗舰版 处理器:Inte i5 系统类型:64 位操作系统 下载 Git Windows https://github.com/git-for-windo ...