码几篇过两天要用的jq拦截器和导航插件
Posted 远菇凉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了码几篇过两天要用的jq拦截器和导航插件相关的知识,希望对你有一定的参考价值。
http://www.cnblogs.com/wgl1995/p/6232027.html
目前针对拦截器vue的全局里面可以直接设置 相对来说比较方便
如果不涉及到兼容可以直接使用token
let token = jwt.encode(param,\'dingshaohua\',{
expiresIn: 60*60 // 24小时过期
});
$(document).ajaxStart(onStart)
.ajaxComplete(onComplete)
.ajaxSuccess(onSuccess);
function onStart(event) {
//.....
}
function onComplete(event, xhr, settings) {
//.....
}
function onSuccess(event, xhr, settings) {
//.....
}
.ajaxComplete(onComplete)
.ajaxSuccess(onSuccess);
function onStart(event) {
//.....
}
function onComplete(event, xhr, settings) {
//.....
}
function onSuccess(event, xhr, settings) {
//.....
}
emmm
下面是比较着急要换的导航了
以上是关于码几篇过两天要用的jq拦截器和导航插件的主要内容,如果未能解决你的问题,请参考以下文章
Vue2学习小记-给Vue2路由导航钩子和axios拦截器做个封装