使用方法:
1. 到nuget上装一个包:http://www.nuget.org/packages/Microsoft.AspNet.WebApi.Cors/
2. 在WebApiConfig.Register方法中加入代码:
config.EnableCors();
3. 在Controller上加上Attribute:
[EnableCors(origins: "http://www.yourdomain.com", headers: "*", methods: "*")]
PS:如果你用jQuery.ajax()的方式去请求,可能会失败:
$.ajax({ url: ‘yourCORSurl‘, data: ‘‘, dataType: ‘json‘, type: ‘GET‘, contentType: ‘application/json; charset=utf-8‘, ... })
学要把dataType和contentType两个参数去掉。
url:http://diaosbook.com/Post/2013/12/27/tips-for-aspnet-webapi-cors
时间: 2024-12-30 01:24:41