gpt4 book ai didi

javascript - 'cache: false' 是否阻止缓存或对请求进行 UNIQUE-IFY 以绕过缓存?

转载 作者:行者123 更新时间:2023-11-28 07:52:34 27 4
gpt4 key购买 nike

如果我通过带有“cache: false”的ajax调用对资源发出多个请求,这是否会阻止浏览器使用请求 header (或其他方式)缓存每个响应,或者它绕过之前缓存的响应,因为资源 URL 由于 _=date 参数而变得唯一,因此永远不会匹配缓存中的任何内容?

作为引用,这里是关于 ajax 缓存属性的 jquery 文档: '如果设置为 false,它将强制浏览器不缓存所请求的页面。注意:将缓存设置为 false 只能正确处理 HEAD 和 GET 请求。它的工作原理是将“_={timestamp}”附加到 GET 参数。'

那么它真的“强制请求的页面不被缓存”吗?或者它只是通过附加日期来模仿这种效果 - 没有两个请求是相同的,因此发出了一个新的请求(但可怜的浏览器一直有一大堆缓存但从未使用过的响应)?

(如果我很想了解缓存的工作方式,请随时指导我!!(我假设它基本上是一个键值类型的系统,键是请求信息,值是响应该请求。))

最佳答案

是的,如果你设置cache: false,那么它只是在 url + params 之后附加 _={timestamp} 。

来自 jquery src :

cacheURL = s.url;

// More options handling for requests with no content
if ( !s.hasContent ) {

// If data is available, append data to url
if ( s.data ) {
cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
// #9682: remove data so that it's not used in an eventual retry
delete s.data;
}

// Add anti-cache in url if needed
if ( s.cache === false ) {
s.url = rts.test( cacheURL ) ?

// If there is already a '_' parameter, set its value
cacheURL.replace( rts, "$1_=" + nonce++ ) :

// Otherwise add one to the end
cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
}
}

关于javascript - 'cache: false' 是否阻止缓存或对请求进行 UNIQUE-IFY 以绕过缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26591510/

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