码迷,mamicode.com
首页 > Windows程序 > 详细

cors解决webapi post时报错405 method not allowed

时间:2016-12-22 11:43:52      阅读:563      评论:0      收藏:0      [点我收藏+]

标签:enable   conf   ret   default   route   ted   get   rom   路由   

nuget控制台敲入以下命令:
Install-Package Microsoft.AspNet.WebApi.Cors IncludePrerelease



打开WebApiConfig.cs添加如下红色标注行

public static void Register(HttpConfiguration config)
{
// Web API configuration and services
var cors = new EnableCorsAttribute("*", "*", "*");
config.EnableCors(cors);

// Web API 配置和服务

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

config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{action}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}

}

 From:http://www.cnblogs.com/xuejianxiyang/p/6210065.html

cors解决webapi post时报错405 method not allowed

标签:enable   conf   ret   default   route   ted   get   rom   路由   

原文地址:http://www.cnblogs.com/xuejianxiyang/p/6210065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!