Ionic系列——發送短信

一、需求描述

    最近作的項目須要有提醒用戶的功能,就是能夠調用手機的發送短信功能android

二、準備

     ①、添加插件$cordovaSMSgit

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

    ②、在controller中添加依賴github

三、代碼實現

//發短信
$scope.sendMessage=function(){
    //CONFIGURATION
    var options = {
        replaceLineBreaks: false, // true to replace \n by a new line, false by default
        android: {
            intent: 'INTENT'  // send SMS with the native android SMS messaging
            //intent: '' // send SMS without open any other app
        }
    };
    $cordovaSms
        .send('18654332789', 'SMS content',options)
        .then(function() {
            // Success! SMS was sent
            CommonJs.AlertPopup("發送短信成功");
        }, function(error) {
            // An error occurred
        });
};

四、注意點

    看來不少東西都須要去官網看原代碼和文檔,ng-cordova的文檔也不全,沒有介紹option怎麼配置,能夠從github上找一些開源的其餘插件。怎麼找其餘的開源插件介紹一下

    https://github.com/cordova-sms/cordova-sms-plugin 官網地址和介紹。
app

相關文章
相關標籤/搜索