.net跨域和输出格式化
程序员文章站
2022-05-04 11:36:13
using System.Web.Http; using System.Web.Http.Cors; using System.Net.Http.Headers; namespace WebAPI { public static class WebApiConfig { public static ......
using system.web.http; using system.web.http.cors; using system.net.http.headers; namespace webapi { public static class webapiconfig { public static void register(httpconfiguration config) { //跨域配置 config.enablecors(new enablecorsattribute("*", "*", "*")); // web api 配置和服务 config.formatters.jsonformatter.serializersettings.datetimezonehandling = newtonsoft.json.datetimezonehandling.local;// convert all datetime to utc config.formatters.jsonformatter.supportedmediatypes.add(new mediatypeheadervalue("text/html")); config.formatters.jsonformatter.supportedmediatypes.add(new mediatypeheadervalue("text/xml")); config.formatters.jsonformatter.supportedmediatypes.add(new mediatypeheadervalue("text/json")); // web api 路由 config.maphttpattributeroutes(); config.routes.maphttproute( name: "defaultapi", routetemplate: "api/{controller}/{id}", defaults: new { id = routeparameter.optional } ); } } }
上一篇: 滚动条动态固定顶部的实例代码分享
推荐阅读
-
支持Ajax跨域访问ASP.NET Web Api 2(Cors)的示例教程
-
在ASP.NET 2.0中操作数据之三十四:基于DataList和Repeater跨页面的主/从报表
-
在ASP.NET 2.0中操作数据之三十:格式化DataList和Repeater的数据
-
支持Ajax跨域访问ASP.NET Web Api 2(Cors)的示例教程
-
在ASP.NET 2.0中操作数据之三十:格式化DataList和Repeater的数据
-
ASP.NET配合jQuery解决跨域调用的问题
-
在ASP.NET 2.0中操作数据之三十四:基于DataList和Repeater跨页面的主/从报表
-
快速解决跨域请求问题:jsonp和CORS
-
Spring boot 和Vue开发中CORS跨域问题解决
-
ASP.NET配合jQuery解决跨域调用的问题