JS拦截全局ajax请求实例解析
你是否有过下⾯的需求:需要给所有ajax请求添加统⼀签名、需要统计某个接⼝被请求的次数、需要限制http请求的⽅法必须为get或post、需要分析别⼈⽹络协议等等,那么如何做?想想,如果能够拦截所有ajax请求,那么问题就会变的很简单! ,少年,想法有点⼤胆,不过,我欣赏!直接上轮⼦,Ajax-hook不仅可以满⾜你想要的,同时可以给你更多。
如何使⽤
1.引⼊ajaxhook.js
<script src="wendu.ajaxhook.js"></script>
2.拦截需要的ajax 回调或函数。
hookAjax({
//拦截回调
onreadystatechange:function(xhr){
console.log("onreadystatechange called: %O",xhr)
},
onload:function(xhr){
console.log("onload called: %O",xhr)
},
//拦截函数
open:function(arg){
console.log("open called: method:%s,url:%s,async:%s",arg[0],arg[1],arg[2])
}
})
ok, 我们使⽤jQuery(v3.1) 的get⽅法来测⼀下:
/
/ get current page source code
$.get().done(function(d){
console.log(d.substr(0,30)+"...")
})
结果 :
> open called: method:GET,url:localhost:63342/Ajax-hook/demo.html,async:true
> onload called: XMLHttpRequest
> <!DOCTYPE html>
<html>
<
拦截成功了!我们也可以看到jQuery3.1内部已经放弃onreadystatechange⽽改⽤onload了。
API
hookAjax(ob)
ob,类型是对象,key为想要拦截的回调或函数,value为我们的拦截函数。
返回值: 原始的 XMLHttpRequest。如果有写请求不想被拦截,可以new 这个。
unHookAjax()
卸载拦截;卸载后,拦截将失效。
改变ajax⾏为
拦截所有ajax请求,检测请求method,如果是“GET”,则中断请求并给出提⽰
hookAjax({
open:function(arg){
if(arg[0]=="GET"){
console.log("Request was aborted! method must be post! ")
return true;
}
}
})
拦截所有ajax请求,请求统⼀添加时间戳
hookAjax({
open:function(arg){
arg[1]+="?timestamp="+w();
}
})
修改请求返回的数据“responseText”
hookAjax({
onload:function(xhr){
//请求到的数据⾸部添加"hook!"
}
})
结果:
hook!<!DOCTYPE html>
<html>
&
有了这些⽰例,相信开篇提到的需求都很容易实现。最后测⼀下unHook
hookAjax({
onreadystatechange:function(xhr){
console.log("onreadystatechange called: %O",xhr)
//return true
},
onload:function(xhr){
console.log("onload called")
//return true;
},
open:function(arg){
console.log("open called: method:%s,url:%s,async:%s",arg[0],arg[1],arg[2])
arg[1]+="?hook_tag=1";
},
send:function(arg){
console.log("send called: %O",arg[0])
}
})
$.get().done(function(d){
console.log(d.substr(0,30)+"...")
//use original XMLHttpRequest
console.log("unhook")
unHookAjax()
$.get().done(function(d){
console.log(d.substr(0,10))
})
})
输出:
open called: method:GET,url:localhost:63342/Ajax-hook/demo.html,async:true
send called: null
onload called
hook<!DOCTYPE html>
<html>
发送ajax请求的步骤&
unhook
<!DOCTYPE
注意
1.拦截函数返回值是⼀个boolean,如果为true则会阻断ajax请求,默认为false,不会阻断请求。
2.所有的回调拦截函数的参数为当前的XMLHttpRequest 实例,如onreadystatechange、onload;所有ajax原始⽅法的拦截函数会将原始参数以数组的形式传递给拦截函数,你可以在拦截函数中修改它。
以上所述是⼩编给⼤家介绍的JS 拦截全局ajax请求实例解析,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论