我正在寻找一种方法来根据电子加载的页面中提供的信息更新 MAC 应用程序的徽章值。
我正在使用文件中的以下代码在启动时加载页面main.js
。
function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({width: 1280, height: 800, show:false})
// and load the index.html of the app.
mainWindow.loadURL('https://myapp/Home.html');
加载的页面“ https://myapp/Home.html ”有一个隐藏的输入变量,其中包含需要在电子徽章上更新的通知数量
如何从 main.js 文件调用变量并使用更新徽章?
app.on('ready', app.setBadgeCount(Html_Hidden_Variable))
请让我知道这是正确的方法,因为我希望避免创建和额外调用应用程序的数据库。
提前感谢您的帮助。