我正在使用NodeJS / Electron / Angular应用程序,而我正在使用node-notifier模块。每件事情都正常,但在我的通知消息的底部,我有一个不合适的"吐司"串。 它只发生在我使用"图标"属性。 我该怎么做才能删除该字符串? 提前谢谢。
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}, () => { });