这是我在 java 插件中测试代码的一部分(我使用的是 phonegap 2.7)。
public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
try {
String[] result;
result = new String[10];
result[0] = "test1 success";
result[1] = "test2 success";
callbackContext.success(result); //error
} catch(Exception ee) {
System.out.print("ee:"+ee.getMessage());
}
return true;
}
我的问题是:
如何从 android phonegap 插件返回数组,以便我可以在 javascript 中获取数组?
哪种数据类型比要返回的数组(JSONArray?)更好?
谢谢