Raod 4 years ago
parent
commit
2e2b7fe0d0

+ 1 - 3
report-core/src/main/java/com/anjiplus/template/gaea/business/modules/datasettransform/service/impl/JsTransformServiceImpl.java

@@ -54,9 +54,7 @@ public class JsTransformServiceImpl implements TransformStrategy {
             engine.eval(js);
             if(engine instanceof Invocable){
                 Invocable invocable = (Invocable) engine;
-                Object exec = invocable.invokeFunction("dataTransform", data);
-                ObjectMapper objectMapper = new ObjectMapper();
-                return objectMapper.convertValue(exec, List.class);
+                return (List<JSONObject>) invocable.invokeFunction("dataTransform", data);
             }
 
         } catch (Exception ex) {