我正在用apache Cordova sms插件编写一个visual studio 2015项目。 我写了这个小代码
function InviaSms()
{
var number = document.querySelector("#numberTxt").value;
var message = document.querySelector("#messageTxt").value;
//configurazione
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
}
};
var success = function () { $('#erroresms').text = 'Message sent successfully'; };
var error = function (e) { $('#erroresms').text = e; };
sms.send(number, message, options, success, error);
}
它可以在Android平台上运行良好,但是当我将其部署为Windows Phone时,通用应用程序短信功能并不起作用。
由于
答案 0 :(得分:0)
对于Windows Universal,纯粹在Javascript中执行此操作是“最干净的”,请参阅此https://github.com/cordova-sms/cordova-sms-plugin/issues/31