我正在开发 NodeJS/Electron/Angular 应用程序,并且正在使用节点通知器模块。一切正常,但在我的通知消息的底部,我有一个不合适的“toast”字符串。只有当我使用“图标”属性时才会发生这种情况。我应该怎么做才能删除该字符串?提前致谢。
const notifier = SystemJS._nodeRequire('node-notifier');
notifier.notify({
title: 'Example of a notification',
message: 'Message of the notification',
icon: `${APP_ROOTDIR}/shared/assets/images/new-notification-icon.png`,
timout: 5}, () => { });