getCacheKeyWithReq method

String? getCacheKeyWithReq(
  1. RequestOptions options
)

根据请求参数缓存缓存Key

Implementation

String? getCacheKeyWithReq(RequestOptions options) {
  String? customCacheKey = options.extra[CacheStrategy.CUSTOM_CACHE_KEY];
  return getCacheKey(customCacheKey, options);
}