谁能帮我使用Phonegap在后台发送短信,
我已经在 Git-hub 中尝试过该示例,但我收到了错误消息
Uncaught TypeError: Cannot read property 'sms' of undefined at file:///android_asset/www/sendingsms.html:
任何人都可以在这个问题上帮助我。
谁能帮我使用Phonegap在后台发送短信,
我已经在 Git-hub 中尝试过该示例,但我收到了错误消息
Uncaught TypeError: Cannot read property 'sms' of undefined at file:///android_asset/www/sendingsms.html:
任何人都可以在这个问题上帮助我。
您应该使用使用本机 SMS 管理器的插件。
我刚刚写了这样的插件(使用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
});