nativescript-messenger
适用于 Android 和 iOS 的 SMS 消息应用 NativeScript 模块
npm i --save nativescript-messenger

NativeScript Messenger

一个为 iOS 和 Android 提供短信消息操作的 NativeScript 模块。

安装

运行 tns plugin add nativescript-messenger

用法

要使用消息模块,您必须首先 require() 它。

var messenger = require( "nativescript-messenger" );

方法

####send: 向一个或多个收件人发送消息

参数
  • numbers: 一个电话号码字符串数组。支持一个或多个。
  • message: 消息正文。
  • subject: 主题消息。
var messenger = require( "nativescript-messenger" );
var numbers = ["905-454-1234", "905-454-4321", "905-929-1122"];
messenger.send(numbers, "My message", "Subject of Message");

此方法还返回一个 promise。用户取消或发送消息后,可以如此定义操作。

    messenger.send(["905-555-5555", "905-555-4444"], "this is body").then(function(args){
console.log(args.response);
// either a string saying cancelled or sent
console.log(args.message);
// just a string with more detail than response.

/* you can do stuff here.. this happens back
in your app after the message window has
been dismissed */


}, function (e) {
console.log("Error occurred " + e);
// e will show a vague error message.
});