this.sms.send(9191919191, 'Hi this is dummy msg')
.then(() => {
alert('The Message is sent');
}).catch((error) => {
console.log('The Message is Failed', error);
alert('Error:- ' + error);
});
我需要将短信发送到相应的手机号码,但是当我运行该应用程序时,它显示用户拒绝了您的权限错误,无法解决此问题
答案 0 :(得分:0)
通过阅读documentation,电话号码应用单引号引起来,请尝试以下操作:
this.sms.send('9191919191', 'Hi this is dummy msg')
.then(() => {
alert('The Message is sent');
}).catch((error) => {
console.log('The Message is Failed', error);
alert('Error:- ' + error);
});
别忘了注入您的构造函数:constructor(private sms: SMS) { }