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

Asp.net Web Api 解决跨域问题

时间:2017-05-09 14:51:18      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:base   空间   web   result   override   nbsp   dom   eric   att   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http.Filters;

namespace KingT.Web.HIS.Sys
{
    public class SupportCrossDomainAttribute : System.Web.Http.Filters.ActionFilterAttribute
    {
        public override void OnActionExecuted(HttpActionExecutedContext actionExecutedContext)
        {
            var resHeaders = actionExecutedContext.Response.Headers;

            if (AllowCredentials)
            {
                resHeaders.Add("Access-Control-Allow-Credentials", "true");
            }

            resHeaders.Add("Access-Control-Allow-Origin", Origin ?? "*");

            base.OnActionExecuted(actionExecutedContext);
        }

        public bool AllowCredentials { get; set; }
        public string Origin { get; set; }
    }
}

在项目中添加上面这个类 命名空间根据自己的进行修改。 然后在每个需要跨域调用的接口上添加[SupportCrossDomainAttribute]特性

[SupportCrossDomainAttribute]
        [HttpGet]
        [Route("Status")]
        public IHttpActionResult Status()
        {
            var obj = new object[] {
                 new{Id="-1" ,Text="全部" },
                 new{Id="1" ,Text= "在用" },     
                 new{Id="0" ,Text= "停用" }
            };
            return Ok(obj);
        }

 

Asp.net Web Api 解决跨域问题

标签:base   空间   web   result   override   nbsp   dom   eric   att   

原文地址:http://www.cnblogs.com/jcbo/p/6830341.html

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