0

Phonegap/Cordova 1.6.1 を使用する TCPIPCommPlugin というカスタム プラグインを作成しました。すべてが素晴らしく、コールバック/プラグインの結果は問題なく機能します。ただし、Cordova 2.3 にアップグレードする必要があります。その理由は、現在、iOS/Android だけでなく Win8 でも開発を開始しているためです。

それはさておき、私はJavaScriptで次のコードを持っています。

var TCPComm = function() {
};

TCPComm.prototype.Open = function(Cmd,successCallback, failureCallback) {
 return PhoneGap.exec(    successCallback,    //Success callback from the plugin
                          failureCallback,     //Error callback from the plugin
                          'TCPIPCommPlugin',  //Tell PhoneGap to run "DirectoryListingPlugin" Plugin
                          'Open',              //Tell plugin, which action we want to perform
                          [Cmd]);        //Passing list of args to the plugin
};

このコードは、プラグインへの約 10 ~ 12 の異なる関数呼び出しに続き、最後に ... で終了します。

PhoneGap.addConstructor(function() {
    PhoneGap.addPlugin("TCPComm", new TCPComm());
});

JavaScript 自体の内部では、実際の関数呼び出しは次のようになります。

window.plugins.TCPComm.Open(g_IpAddr, OpenOK,OpenFail);

さらに、JAVA プラグインは次のようになります。

@Override
    public PluginResult execute(String action, JSONArray data, String callbackId) {
           PluginResult result = null;
        try {
            Actions currentAction = Actions.valueOf(action.toUpperCase());
            JSONObject Resp = new JSONObject();
            String RespStr;
            switch(currentAction){
            case OPEN:
            {
                       //do work
                    }catch (JSONException jsonEx) { 
        System.out.println(jsonEx.toString());
        result = new PluginResult(Status.JSON_EXCEPTION);
    }
    return result;}

これは、Cordova 1.6.1 でうまく機能します。しかし、Cordova 2.xx ではそれほどでもありません。これで、JAVA を変換する方法を見つけようと Web を調べました。私は次のことを思いつきました。

public boolean execute(String action, JSONArray data, CallbackContext callbackContext) {

    PluginResult result = null;
    try {
        Actions currentAction = Actions.valueOf(action.toUpperCase());
        JSONObject Resp = new JSONObject();
        String RespStr;
        switch(currentAction){
        case OPEN:
        {
                       //do work
                     }catch (JSONException jsonEx) {    
        System.out.println(jsonEx.toString());
        result = new PluginResult(Status.JSON_EXCEPTION);
    }
    return true;
}

これは、更新されたコードと一致するようです。私が見つけられなかったのは、JAVASCRIPT 呼び出しを更新して、このプラグインを更新された CORDOVA で動作させる方法です。

正しい方向へのヘルプ/ポイントは大歓迎です!

次のドキュメントを使用しましたが、成功しませんでした。 http://docs.phonegap.com/en/2.3.0/guide_plugin-development_index.md.html#Plugin%20Development%20Guide

https://github.com/apache/cordova-android/tree/master/framework/src/org/apache/cordova

アップデート

返信ありがとうサイモン。その間、私は自分のjavascriptを次のものに置き換えました。以前の状態に戻す必要がありますか?

cordova.define("cordova/plugin/TCPIPCommPlugin", function(require, exports, module){
    var exec = require('cordova/exec');
    var TCPComm = function() {};
//  var TCPCommError = function(code, message) {
//        this.code = code || null;
//        this.message = message || '';
//    };

    TCPComm.prototype.Open = function(success,fail) {
          return cordova.exec(              successCallback,    //Success callback from the plugin
                                  failureCallback,     //Error callback from the plugin
                                  'TCPIPCommPlugin',  //Tell PhoneGap to run "DirectoryListingPlugin" Plugin
                                  'Open',              //Tell plugin, which action we want to perform
                                  [Cmd]);
    };
    var TCPIPCommPlugin = new TCPComm();
    module.exports = TCPIPCommPlugin;
});

更新 #2 - いくつかのエラーを修正

私は古いjavascriptに戻ってすべてを置き換えたので、今はこのようになっています..

var TCPComm = function() {}; 


TCPComm.prototype.Open = function(Cmd, successCallback,failureCallback) {
      return cordova.exec(              successCallback,    //Success callback from the plugin
                              failureCallback,     //Error callback from the plugin
                              'TCPIPCommPlugin',  //Tell PhoneGap to run "DirectoryListingPlugin" Plugin
                              'Open',              //Tell plugin, which action we want to perform
                              [Cmd]);
};

また、コンストラクターを..に置き換えました。

    if(!window.plugins) {
    window.plugins = {};
}
if (!window.plugins.TCPComm) {
    window.plugins.TCPComm = new TCPComm();
}

これを Chrome で実行すると (UI デバッグ)、関数内にすべての適切な関数が組み込まれたプラグインが表示されます。

Java は問題ありませんでした。フォーラム コードにリターンを含めるのを忘れていました。おっと。

ここで、いつものように関数を呼び出してみましたが、Close/Open の最初の JAVASCRIPT 呼び出しで Object # has no method 'exec' を取得しました。

    window.plugins.TCPComm.Close("", Dummy, Dummy);
window.plugins.TCPComm.Open(g_IpAddr, OpenOK,OpenFail);

実行時に Java にブレークポイントを設定して、プラグインが Java の呼び出しに成功したが、まだ成功していないことを知らせてくれます。

他の考えはありますか?あなたの洞察に再び感謝します。

4

1 に答える 1

2

PhoneGap.exec を次のコードに置き換えます。

var TCPComm = function() {
}; 

TCPComm.prototype.Open = function(Cmd,successCallback, failureCallback) {
 return cordova.exec(    successCallback,    //Success callback from the plugin
                      failureCallback,     //Error callback from the plugin
                      'TCPIPCommPlugin',  //Tell PhoneGap to run "DirectoryListingPlugin" Plugin
                      'Open',              //Tell plugin, which action we want to perform
                      [Cmd]);        //Passing list of args to the plugin
};

add コンストラクター メソッドは非推奨になっているため、次のようにします。

if(!window.plugins) {
    window.plugins = {};
}
if (!window.plugins.videoPlayer) {
    window.plugins.TCPComm = new TCPComm();
}

Java コードの場合、ほとんどの場合、結果を返す必要があります。

public boolean execute(String action, JSONArray data, CallbackContext callbackContext) {

    PluginResult result = null;
    try {
        Actions currentAction = Actions.valueOf(action.toUpperCase());
        JSONObject Resp = new JSONObject();
        String RespStr;
        switch(currentAction){
        case OPEN:
            //do work
            this.callbackContext.sendPluginResult(
                new PluginResult(PluginResult.Status.OK, results));
    } catch (JSONException jsonEx) {    
        System.out.println(jsonEx.toString());
        result = new PluginResult(Status.JSON_EXCEPTION);
    }
    return true;
}

それはあなたをアップグレードするはずです。

于 2013-01-09T17:20:11.097 に答える