asp.net WebApi 使用总结

时间:2021-08-01 05:36:59

如果想让处事端直接返回json或者xml的话,可以考虑使用webservice、wcf,,或者webapi。webservice基于xml,效率较慢,wcf虽然可以返回json,但是配置繁琐。webapi相较于前两者而言配置简单灵活,效率也不错。是asp.net平台上制作api接口的首选。

新建.net framework web应用措施,模板选择webapi,默认模板已经替你完成了大部分的配置,直接运行措施并浏览器访谒默认控制器ValuesController,既/api/values即可看到效果。webapi的访谒路由配置文件位于app_start文件夹下,配置要领与mvc路由分歧不大。

如果想要将默认返回的xml格局不对劲,想改成json格局的话,可以在global文件的Application_Start要领里添加:

GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();

这样返回的数据就会被格局化为json而不是xml了。

但是这时使用的序列化要领是系统自带的,如果想要自界说,可以在控制器里直接返回HttpResponseMessage类,不过HttpResponseMessage需要本身构建。

[AcceptVerbs("get", "post")] //配置接受的请求类型。 public HttpResponseMessage Demo() { string jsonStr = JsonConvert.SerializeObject(new {Id = 10, Name ="ka"}); HttpResponseMessage result = new HttpResponseMessage { Content = new StringContent(jsonStr,Encoding.GetEncoding("UTF-8"), "application/json")}; return result; }

访谒Demo要领即可看到功效。

参考博文:https://www.cnblogs.com/elvinle/p/6252065.html