码迷,mamicode.com
首页 > Web开发 > 详细

ajax跨域请求的方案

时间:2014-10-12 00:45:16      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   sp   div   on   

$.get("@Hosts.Default.Www/api/XXXXX/Getxxx/"+@Model.UserId, function(data) {
            $("#totalPv").text("历史访问量:"+data[0]+"次");
            $("#todayPv").text("今日访问量:"+data[1]+"次");
        });
 public class XXXXXController : ApiController
    {
        // GET api/pvrecords/5
        [HttpGet]
        public int[] Getxxx(int id)
        {
            HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
            HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "www.xxx.com");
            return new int[] { 123, 456};
        }
    }

参考地址:http://www.cnblogs.com/akak123/p/3503934.html 

ajax跨域请求的方案

标签:style   blog   http   color   io   os   sp   div   on   

原文地址:http://www.cnblogs.com/niaowo/p/4019899.html

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