getCacheKeyWithReq method
根据请求参数缓存缓存Key
Implementation
String? getCacheKeyWithReq(RequestOptions options) {
String? customCacheKey = options.extra[CacheStrategy.CUSTOM_CACHE_KEY];
return getCacheKey(customCacheKey, options);
}
根据请求参数缓存缓存Key
String? getCacheKeyWithReq(RequestOptions options) {
String? customCacheKey = options.extra[CacheStrategy.CUSTOM_CACHE_KEY];
return getCacheKey(customCacheKey, options);
}