我正在尝试创建一个salesforce插件,我希望从我的java代码(基本上是后台进程)将数据推送回JS 但它总是给我错误的行this.sendJavascript(函数名称)
以下是插件代码 -
package com.salesforce.androidsdk.phonegap;
import org.apache.cordova.api.CallbackContext;
import org.apache.cordova.api.CordovaPlugin;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
/**
* This class echoes a string called from JavaScript.
*/
public class Echo extends CordovaPlugin {
private static final String TAG = "CordovaPlugin";
@Override
public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
Log.i(TAG,"inside execute method--->>>" + action + args + callbackContext);
if (action.trim().equalsIgnoreCase("echo")) {
Log.i(TAG,"args.getString(0)--->>>" + args.getString(0));
String message = args.getString(0);
// Initialise the service variables and start it it up
Context thiscontext = this.cordova.getActivity().getApplicationContext();
Intent callBackgroundService = new Intent(thiscontext, CallBackgroundService.class);
callBackgroundService.putExtra("loadinterval", 800); // Set LED flash interval
thiscontext.startService(callBackgroundService);
this.echo(message, callbackContext);
sendValue("Kaushik", "Ray");
return true;
}
return false;
}
private void echo(String message, CallbackContext callbackContext) {
if (message != null && message.length() > 0) {
callbackContext.success(message);
} else {
callbackContext.error("Expected one non-empty string argument.");
}
}
public void sendValue(String value1, String value2) {
JSONObject data = new JSONObject();
try {
data.put("value1", "Kaushik");
data.put("value2", "Ray");
} catch (JSONException e) {
Log.e("CommTest", e.getMessage());
}
String js = String.format(
"window.plugins.commtest.updateValues('%s');",
data.toString());
error line ------->>> this.sendJavascript(js);
}
}
我已经标记了最后的错误行。请帮我解决这个问题
先谢谢, 考希克
答案 0 :(得分:1)
sendJavascript()
是DroidGap.java和CordovaWebView.java中的函数,但当前文件中this
的值是Echo的实例。行this.sendJavascript()
失败,因为期望被调用的函数是Echo的成员或其继承的类之一的公共/受保护成员,在本例中为CordovaPlugin。
CordovaPlugin.java中有一个名为webView
的公共变量,它是您项目的CordovaWebView。如果您将违规行从this.sendJavascript(js)
更改为webView.sendJavascript(js)
,则应该会修复您的错误。