gpt4 book ai didi

node-notifier - 节点通知模块的问题

转载 作者:行者123 更新时间:2023-12-04 17:52:10 27 4
gpt4 key购买 nike

我正在开发 NodeJS/Electron/Angular 应用程序,我正在使用 node-notifier 模块。一切正常,但在我的通知消息底部有一个不合适的“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,这是通知的屏幕截图:Screenshot of the notification

最佳答案

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

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

这是输出:

enter image description here

关于node-notifier - 节点通知模块的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43794057/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com