我想实现一个强大的ajax缓存并寻找合适的模式 - 可能使用新的jquery 1.5.2延迟对象。
最佳答案:
How can jQuery deferred be used?
接近,但如果两个ajax请求同时被触发,那么它失败的地方就会有2个请求到服务器。由于响应尚未进入,因此尚未填充缓存。
我想要一个只向服务器发出1个请求的实现,但会将响应返回给两者。
答案 0 :(得分:3)
从我的头脑中,这里有一些完全未经测试的东西:
(function( $ ) {
// Perform a cached ajax request
// keyFn is a function that takes ajax options
// and returns a suitable cache key
jQuery.cachedAjax = function( keyFn ) {
// Cache for jqXHR objects
var cache = {};
// Actual function to perform cached ajax calls
return function( url, options ) {
// If url is an object, simulate pre-1.5 signature
if ( typeof url === "object" ) {
options = url || {};
url = undefined;
// else, add the url into the options
} else if ( url ) {
options = $.extend( {}, options || {} );
options.url = url + "";
}
// Get the cache key
var key = keyFn( options );
// If not cached yet, cache it
if ( !cache[ key ] ) {
cache[ key ] = $.ajax( options );
} else {
// If already cached, ensure success, error
// and complete callbacks are properly attached
for( var cbType in { success: 1, error: 1, complete: 1 } ) {
cache[ key ][ cbType ]( options[ cbType ] );
}
}
// Return the jqXHR for this key
return cache[ key ];
};
};
})( jQuery ):
// Create a method that caches by url
jQuery.ajaxCachedByURL = jQuery.cachedAjax(function( options ) {
return options.url;
};
// Use the method just like ajax
jQuery.cachedAjax( url, options ).then( successCallback, errorCallback );
这个想法是将jqXHR存储在缓存中,而不是值。一旦请求启动一次,那么它是否已经完成或正在运行并不重要:事实是对缓存的ajax方法的进一步调用将返回相同的jqXHR,因此透明地处理并发。