异步和同步请求
sunshine0670
这个作者很懒,什么都没留下…
展开
-
js回调函数callback
工作中会遇到一些场景,需要自己去封装含有回调函数的方法。封装callback函数function fn(callback){ setTimeout(function(){ alert("执行成功") let res = "校验结果" if (!callback) return return callback(res) },2000)}let save = {id: 1,use:'hah'}function use (data,save) { console.log原创 2020-11-27 17:21:21 · 643 阅读 · 0 评论 -
jquery的$.post()和$.get()如何进行同步请求
因为.post()和.post()和.post()和.get()是jquery对$.ajax()封装的异步调用接口的方法。如果需要同步请求的时候,可以进行如下操作:在.post()或者.post()或者.post()或者.get()前把ajax设置为同步:$.ajaxSettings.async = false;在.post()或者.post()或者.post()或者.get()后把ajax...转载 2019-04-11 19:13:08 · 10882 阅读 · 0 评论