我正在尝试使用 aerogear 推送通知插件在科尔多瓦上构建一个简单的应用程序
我正在做的是密切关注本指南:https ://aerogear.org/docs/guides/aerogear-cordova/AerogearCordovaPush/#_sample_example
但是,将示例代码放入我的 js 中后,这一行:
push.register(onNotification, successHandler, errorHandler, pushConfig);
由于未定义 push 将导致引用错误
我遵循了之前的所有步骤,并且 aerogear-cordova-push 插件位于插件文件夹中,也许我需要一些额外的步骤来引用插件?
此外,该插件在其文件夹中提供了一个 index.html 作为示例,但即使使用它我也无法解析推送
我试图在执行 index.js 之前将插件的 js 文件移动到 www 文件夹中并将它们链接到索引上,因为这不是很正确导致其他参考错误
www 文件夹上的 index.html 与标准 cordova 项目在创建后提供的相同
这是我的 index.js,我可以通过 try catch 在 android 上显示错误:
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() {
try {
app.receivedEvent('deviceready');
var pushConfig = {
pushServerURL: "...",
android: {
senderID: "...",
variantID: "...",
variantSecret: "..."
}
};
push.register(app.onNotification, successHandler, errorHandler, pushConfig);
}
catch (e){
alert(e);
}
function successHandler() {
console.log('success')
}
function errorHandler(message) {
console.log('error ' + message);
}
},
onNotification: function(event) {
alert(event.alert);
},
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);
}}; app.initialize();