smsModule原生插件实现了调用系统发送短信的功能,是为了替代引擎中的api.sms方法,方便开发者按需使用发送短信功能,避免应用市场审核时因不需要的敏感权限问题而被拒绝。
发送短信
sms({params}, callback(ret))
numbers:
text:
silent:
ret:
{
status:true //发送状态,布尔型
}
var smsModule = api.require('smsModule');
smsModule.sms({
numbers: ['10086'],
text: '1008611'
},function(ret){
api.alert({
msg: JSON.stringify(ret)
})
})
Android 系统,iOS 系统
可提供的 1.0.0 及更高版本
跳转短信 App 并发送短信,仅支持 iOS 端
send({params}, callback(ret))
number:
text:
var smsModule = api.require('smsModule');
smsModule.send({
number: '10086',
text: '1008611'
})
iOS 系统
可提供的 1.0.0 及更高版本