标签:style http color io os 使用 ar for strong
在调试ajax请求时,经常遇到的是跨域的问题,而解决跨域问题其中之一的办法就是服务器端添加
Access-Control-Allow-Origin : *这样的头
在服务器没作出修改之前,我们要模拟这个情况就得用到fiddler了
两种方式,各有长短,先上图再说
方法1:修改CustomRules.js
通过修改CustomRules.js给Fiddler添加菜单项,效果永久有效,操作方便,也可随时自定,实现如下
a. 在CustomRules.js的 public static RulesOption("Cache Always &Fresh", "Per&formance")下面加上以下代码:
b.在CustomRules.js时找到static function OnBeforeResponse,在函数体内再加上如下代码:
注意:如果需要跨域读写cookie,要同时设置Access-Control-Allow-Credentials:ture
标签:style http color io os 使用 ar for strong
原文地址:http://www.cnblogs.com/xiao-kkp/p/4016112.html