Raod 3 years ago
parent 5b9925d069
commit 2e2b7fe0d0

@ -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) {

Loading…
Cancel
Save