gpt4 book ai didi

jquery - $.ajax(); 之间的区别和 $.ajaxSetup();

转载 作者:行者123 更新时间:2023-12-03 21:25:56 24 4
gpt4 key购买 nike

jQuery 中的 $.ajax();$.ajaxSetup(); 有什么区别:

$.ajax({
cache:false
});

$.ajaxSetup({
cache:true
});

另外,哪一个是最好的选择?

最佳答案

以下内容将阻止缓存所有 future 的 AJAX 请求,无论您使用哪种 jQuery 方法($.get、$.ajax 等)

$(document).ready(function() {
$.ajaxSetup({ cache: false });
});

您应该使用 $.ajax,它允许您为该实例关闭缓存:

$.ajax({url: "myurl", success: myCallback, cache: false});

关于jquery - $.ajax(); 之间的区别和 $.ajaxSetup();,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7750447/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com