我做了一个像这样的本地通知:
/* local notification */
document.addEventListener('deviceready', function () {
window.plugin.notification.local.add({
id: 1,
message: "test",
title: "Hello !",
icon: 'file://img/logo/true.png',
sound: 'TYPE_NOTIFICATION'
});
}, false);
但是有一个问题:声音是唯一发生的事件......
https://github.com/katzer/cordova-plugin-local-notifications我错过了什么?