2
我用於獲取OTP短信和SMS Cordova SMS插件列表。如何在IONIC2中自動驗證OTP如Whats'up在充值應用程序中
我得到了Smses列表,但我想在我的文本框中輸入最新的短信並自動驗證OTP。
我用於獲取OTP短信和SMS Cordova SMS插件列表。如何在IONIC2中自動驗證OTP如Whats'up在充值應用程序中
我得到了Smses列表,但我想在我的文本框中輸入最新的短信並自動驗證OTP。
getSMS(sms)
{
if(window.SMS)window.SMS.listSMS({},data=>
{
setTimeout(()=>{console.log(data);
this.otp =data;
if(Array.isArray(this.otp)) {
for(let i in this.otp)
{
var msg = this.otp[i];
let msgaddress = msg.address;
let msgbody = msg.body;
var newValue = msgbody.slice(0,34);
if(msgaddress == "VK-POCKET" || msgaddress == "VM-POCKET" && newValue == "your pepocket registration otp is:")
{
var newVal = msgbody.substring(34,msgbody.length);
this.otpname=newVal;
}
}
}
},0)
},error=>
{
console.log(error);
});
}
你能分享一下你到目前爲止試過的代碼嗎 –
我解決了我的問題。謝謝。 –