更新帮助文档;更新cacheFile

This commit is contained in:
Xwite
2022-01-04 16:19:07 +08:00
parent 97bfb324e7
commit a13ed0453b
2 changed files with 18 additions and 4 deletions
@@ -139,8 +139,9 @@ interface JsExtensions {
fun cacheFile(url: String, saveTime: Int = 0): String? {
val key = md5Encode16(url)
val _cache = CacheManager.get(key)
val value = ajax(url) ?: ""
if(_cache.isNullOrBlank()) {
if(_cache.isNullOrBlank()) {
log("首次下载${url}...")
val value = ajax(url) ?: ""
CacheManager.put(key, value as Any, saveTime)
}
return _cache