android: enable setTimeout and setInterval

This commit is contained in:
pengfei.zhou
2021-11-05 15:40:25 +08:00
committed by osborn
parent bb17b74b99
commit 5c74729fbc
6 changed files with 34 additions and 25 deletions

View File

@@ -83,6 +83,9 @@ public class DoricJSEngine implements Handler.Callback, DoricTimerExtension.Time
initJSEngine();
injectGlobal();
initDoricRuntime();
if (mDoricJSE instanceof DoricWebViewJSExecutor) {
mDoricJSE.loadJS("_prepared();", "");
}
initialized = true;
globalProfile.end(DoricPerformanceProfile.PART_INIT);
}

View File

@@ -43,7 +43,7 @@ import pub.doric.utils.DoricLog;
/**
* @Description: This contains a webView which is used for executing JavaScript
* @Description: This uses a webView to execute JavaScript
* @Author: pengfei.zhou
* @CreateDate: 2021/11/3
*/
@@ -215,12 +215,10 @@ public class DoricWebViewJSExecutor implements IDoricJSE {
@Override
public JSDecoder invokeMethod(String objectName, String functionName, JavaValue[] javaValues, boolean hashKey) throws JSRuntimeException {
JSONArray jsonArray = new JSONArray();
for (int i = 0; i < javaValues.length; i++) {
JavaValue javaValue = javaValues[i];
for (JavaValue javaValue : javaValues) {
JSONObject jsonObject = wrapJavaValue(javaValue);
jsonArray.put(jsonObject);
}
returnFuture = new SettableFuture<>();
String script = String.format(
"__invokeMethod('%s','%s','%s')",