gpt4 book ai didi

javascript - 从 IONIC 发送短信不适用于 $cordova 短信插件

转载 作者:行者123 更新时间:2023-11-28 06:08:37 25 4
gpt4 key购买 nike

我正在使用 smsCordova 插件从我的 ionic 应用程序发送短信,但收到“短信未定义”的错误。我在 $ionicPlatform.ready() 函数中使用了 cordovaSms 插件。

这是我用来发送短信的代码:-

//use verifyNumber service
verifyNumberService.verify()
.then(
function (result) {

if (result == "Successfully data save...") {
//alert and navigate to profile Info state
$ionicPopup.alert({
title: 'Registered',
template: 'Thanks For Signup'
});
$ionicPlatform.ready(function() {
alert("in device ready function")
sendOtp();
});

$state.go('profileInfo');
}

这是 sendOtp() 的函数:-

 function sendOtp() {
alert("inside send otp");
$cordovaSms
.send('+919765293765', "Hi there",{})
.then(function () {
// Success! SMS was sent
alert("success")
console.log('Success');
}, function (error) {
// An error occurred
alert("error");
console.log(error);
});//then
alert("send otp");
}

最佳答案

爱资哈尔汗,如果我们想在cordova中使用发送短信请求,那么1.我们需要在您的应用程序中安装此插件:

cordova plugin add https://github.com/cordova-sms/cordova-sms-plugin.git

2.需要在 Controller 功能中添加该插件实例($cordovaSms):

.controller('ThisCtrl', function($cordovaSms) {
});
  • 现在我们可以使用 Controller 内的代码发送短信抛出该插件:
  • document.addEventListener("deviceready", function () {

    $cordovaSms.send('mobile_number', 'SMS Message', options)
    .then(function() {
    alert(SMS sent )
    }, function(error) {
    alert(Problem in sending SMS)
    });
    });

    这就是我们向 ionic 中的任何号码发送短信所需的全部内容祝你代码日快乐。

    关于javascript - 从 IONIC 发送短信不适用于 $cordova 短信插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36614036/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com