网站 : https://www.html.cn/doc/zeptojs_api/
zepto请求/获取数据
$.get/post(“url”,”data”,成功的回调函数); url:请求地址 data:参数 回调函数
$.get/post(“url”,function (result) {} );没有参数则不写
zepto拦截器
beforeSend会在发送请求之前被调用
$.ajaxSettings.beforeSend = function (xhr, obj) {
obj.url = baseUrl + obj.url;
}
complete 会在请求结束后被调用
$.ajaxSettings.complete = function () {
}
示例