http 接口 请求 优化 ,post application/x-www-form-urlencoded 问题修复

This commit is contained in:
2025-02-13 22:47:20 +08:00
parent 2480af577b
commit 2d4ddc2857
3 changed files with 50 additions and 12 deletions

View File

@@ -162,6 +162,10 @@ public class JevalUtil {
Object v = variablesMap.get(key);
if(v!=null) {
String variableValue = CommonConst.SYMBOL_SINGLE_QUOTA+v.toString()+CommonConst.SYMBOL_SINGLE_QUOTA;
variablesMap.put(key, variableValue);
}else{
String variableValue = CommonConst.SYMBOL_SINGLE_QUOTA+CommonConst.SYMBOL_SINGLE_QUOTA;
variablesMap.put(key, variableValue);
}
}