This commit is contained in:
kunfei
2023-01-16 10:17:23 +08:00
parent ec207c98e5
commit 17e0544e07
2 changed files with 8 additions and 1 deletions
@@ -179,6 +179,10 @@ interface BaseSource : JsExtensions {
CacheManager.delete("userInfo_${getKey()}")
}
/**
* 设置自定义变量
* @param variable 变量内容
*/
fun setVariable(variable: String?) {
if (variable != null) {
CacheManager.put("sourceVariable_${getKey()}", variable)
@@ -187,6 +191,9 @@ interface BaseSource : JsExtensions {
}
}
/**
* 获取自定义变量
*/
fun getVariable(): String? {
return CacheManager.get("sourceVariable_${getKey()}")
}
@@ -8,7 +8,7 @@ interface RuleDataInterface {
return when {
value == null -> {
variableMap.remove(key)
putBigVariable(key, value)
putBigVariable(key, null)
true
}
value.length < 10000 -> {