在后台Phonegap中发送短信的问题

时间:2012-12-26 10:50:06

标签: cordova

任何人都可以帮助我使用Phonegap在后台发送短信,

我在Git-hub中尝试过该示例,但我收到了错误消息

Uncaught TypeError: Cannot read property 'sms' of undefined at file:///android_asset/www/sendingsms.html:

任何人都可以帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

您应该使用本机SMS Manager使用插件。

我刚刚编写了这样的插件(使用Phonegap 2.5):https://github.com/Pyo25/phonegap-sms-sending-plugin

包含所需文件后,您只需调用send方法即可。例如:

var smsSendingPlugin = cordova.require('cordova/plugin/smssendingplugin');
smsSendingPlugin.send ("0032472345678", "Hello World !", function() {
    // message sent
}, function() {
    // message not sent
});
相关问题