0

我正在尝试创建一个salesforce插件,我想在其中将数据从我的java代码推回JS(这基本上是一个后台进程)但它总是给我this.sendJavascript(function name)行的错误

以下是插件代码 -

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);

    }
}

我已经标记了最后的错误行。请帮我解决这个问题

提前致谢,考希克

4

1 回答 1

1

sendJavascript()是 DroidGap.java 和 CordovaWebView.java 中的函数,但this当前文件中的值是 Echo 的实例。该行this.sendJavascript()失败,因为期望调用的函数是 Echo 的成员或它继承自的类之一的公共/受保护成员,在本例中为 CordovaPlugin。

CordovaPlugin.java 中有一个公共变量,命名webView为您项目的 CordovaWebView。如果您将违规行从 更改this.sendJavascript(js)webView.sendJavascript(js),它应该可以解决您的错误。

于 2013-05-06T18:52:08.797 回答