作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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) {
});
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/
我是一名优秀的程序员,十分优秀!