我正在使用Phonegap和Phonegap Build开发应用程序.该应用程序已基本完成,但我没有处理推送通知.
我很难让设备甚至完全注册.我已将以下插件添加到我的项目中(添加到配置为phonegap构建)https://github.com/phonegap/phonegap-plugin-push
我添加了插件并在我的javascript文件中有以下内容.
var app = {
// Application Constructor
initialize: function () {
this.bindEvents();
},
// Bind Event Listeners
//
// Bind any events that are required on startup. Common events are:
// 'load', 'deviceready', 'offline', and 'online'.
bindEvents: function () {
document.addEventListener('deviceready', this.onDeviceReady, false);
},
// deviceready Event Handler
//
// The scope of 'this' is the event. In order to call the 'receivedEvent'
// function, we must explicitly call 'app.receivedEvent(...);'
onDeviceReady: function () {
app.receivedEvent('deviceready');
var push = PushNotification.init({
"android": {
"senderID": "1234567890"
},
"ios": { "alert": "true", "badge": "true", "sound": "true" },
"windows": {}
});
push.on('registration', function (data) {
console.log("registration event");
//document.getElementById("regId").innerHTML = data.registrationId;
alert(data.registrationId)
console.log(JSON.stringify(data));
});
push.on('notification', function (data) {
console.log("notification event");
console.log(JSON.stringify(data));
var cards = document.getElementById("cards");
var card = '<div class="row">' +
'<div class="col s12 m6">' +
' <div class="card darken-1">' +
' <div class="card-content black-text">' +
' <span class="card-title black-text">' + data.title + '</span>' +
' <p>' + data.message + '</p>' +
' </div>' +
' </div>' +
' </div>' +
'</div>';
cards.innerHTML += card;
push.finish(function () {
console.log('finish successfully called');
});
});
push.on('error', function (e) {
console.log("push error");
});
},
// Update DOM on a Received Event
receivedEvent: function (id) {
var parentElement = document.getElementById(id);
var listeningElement = parentElement.querySelector('.listening');
var receivedElement = parentElement.querySelector('.received');
listeningElement.setAttribute('style', 'display:none;');
receivedElement.setAttribute('style', 'display:block;');
console.log('Received Event: ' + id);
}
};
function successHandler(result) {
alert('result = ' + result); //Here you will get your device id.
}
function errorHandler(error) {
alert('error = ' + error);
}
所以,我不确定从这里到底要去哪里.我已经设置了一个带有推送向导的帐户,并创建了其他证书,但这并没有拿起任何设备,因为我认为没有设置为接收通知的设备.
所以我想我的主要问题是,我是否错过了像注册阶段那样愚蠢的东西,我的设备在哪里注册接收通知?
解决方法:
您没有正确使用此上下文.这是一个常见的错误. Javascript这不像Java那样工作.
它不起作用的原因是因为它在运行时解决,而不是汇编时(或编译时).当事件触发时,这将解析为全局,因为您的app对象现在已超出范围.该事件会触发您应用对象的* *.
快速修复将是app.onDeviceReady而不是this.onDeviceReady您可以通过使youronDeviceReady()成为一个全局函数并将其保留到位来测试这一点.
这些视频应有所帮助. – 最好的运气.
> Context in JavaScript – 1/4 – Purpose and Problems with JavaScript’s “This”
> Context in JavaScript – 2/4 – How JavaScript Decides What “This” Actually Is
> Context in JavaScript – 3/4 – “This” May Not Be What You Expected & How to Fix It
> Context in JavaScript – 4/4 – Mastering “This:” Additional Techniques & Future Support
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!