3

2.3.0 バージョンを使用して phonegap アプリケーションを開発しました。このアプリケーションには、ダウンローダー、pdfviewer、statusbarnotification、video などの電話プラグインが多すぎます。今度は、sms プラグインを同じアプリケーションに実装したいと思います。sms プラグインを実装しようとしました。このアプリを使用していますが、機能していません。コードバの複数のバージョンと混同していると思います。そのため、phonegapを使用してSMSを送信するためのSMS送信コードを含めて記述する方法と、アプリケーションにSMSプラグインを含める方法を明確にしてください。答えを私と非常に明確に共有してください。前もって感謝します

4

1 に答える 1

2

この SMS プラグインは phonegap 2.3.0 用です。

SendSmsCordovaPlugin

サンプル:

                    

<script type="text/javascript">
                    sendSmsDemo = function() {
                        cordova.exec(function(winParam) {
                                // Use the following line if json2 library is present.
                                // Available from Douglas Crockford's github page here:
                                // https://github.com/douglascrockford/JSON-js/blob/master/json2.js
                                console.log( JSON.stringify(winParam) );
                                alert(winParam.sms_send);
                            }
                            , function(error) {
                                alert("An error has occurred");
                                console.log("An error has occurred");
                                // Please refer to previous comment about json2 library.
                                console.log( JSON.stringify(error) );
                            }
                            , "SendSms"
                             ,"SendSms"
                             , ["TESTNUM", "This is random text."]);
                    }
                    </script>
于 2013-07-12T07:40:48.413 に答える