如何在Cordova插件中调用函数

时间:2017-04-09 06:08:03

标签: javascript cordova callback cordova-plugins

我写了一个简单的cordova插件,它会显示警告。 JS文件:alert.js

module.exports = {
alert: function(title, message, buttonLabel, successCallback) {
cordova.exec(successCallback,
             null, // No failure callback
             "Alert",
             "alert",
             [title, message, buttonLabel]);
    }
};

Java文件:Alert.java

package com.acme.plugin.alert;

import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.DialogInterface;
import org.apache.cordova.CallbackContext;
import org.apache.cordova.CordovaInterface;
import org.apache.cordova.CordovaPlugin;
import org.apache.cordova.CordovaWebView;
import org.apache.cordova.PluginResult;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

public class Alert extends CordovaPlugin {
  protected void pluginInitialize() {
  }

  public boolean execute(String action, JSONArray args, CallbackContext callbackContext) 
      throws JSONException {
    if (action.equals("alert")) {
      alert(args.getString(0), args.getString(1), args.getString(2), callbackContext);
      return true;
    }
    return false;
  }

  private synchronized void alert(final String title, 
                                  final String message, 
                                  final String buttonLabel, 
                                  final CallbackContext callbackContext) {
    new AlertDialog.Builder(cordova.getActivity())
    .setTitle(title)
    .setMessage(message)
    .setCancelable(false)
    .setNeutralButton(buttonLabel, new AlertDialog.OnClickListener() {
      public void onClick(DialogInterface dialogInterface, int which) {
        dialogInterface.dismiss();
        callbackContext.sendPluginResult(new PluginResult(PluginResult.Status.OK, 0));
      }
    })
    .create()
    .show();
  }
}

如何从另一个js调用alert.js的警报功能?我应该传递什么参数来映射到successCallback ??

1 个答案:

答案 0 :(得分:0)

根据cordova git创建插件see github page,您可以这样做

在需要调用插件功能的任何地方添加以下代码:

 ‍‍‍cordova.plugins.<PluginName>.<method>();

其中<PluginName>是您的插件名称,<method>是您的方法。