3

我正在开发 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}, () => { });

PS:我的操作系统是 Windows 10,这是通知的屏幕截图:通知截图

4

1 回答 1

1

试试下面的代码,如果这对你有用,让我看看,它对我来说很好。默认超时时间为 5 秒。

const notifier = require('node-notifier');
notifier.notify({
    'title': 'My notification',
    'message': 'Hello, there!',
    'icon': '/home/xxx/Desktop/icon.jpg'
});

这是输出:

在此处输入图像描述

于 2017-05-08T12:41:06.440 回答