作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用“Electron 更新程序”来检查自动更新 Electron 应用程序。
调用“checkForUpdatesAndNotify()”函数。
在控制台中,我收到“由于应用程序未打包而跳过 checkForUpdatesAndNotify”。
const {autoUpdater} = require("electron-updater");
autoUpdater.checkForUpdatesAndNotify();
autoUpdater.on('checking-for-update', () => {
console.log('Checking for update...');
});
autoUpdater.on('update-available', (info) => {
console.log('Update available.');
});
autoUpdater.on('update-not-available', (info) => {
console.log('Update not available.');
});
autoUpdater.on('error', (err) => {
console.log('Error in auto-updater. ' + err);
});
autoUpdater.on('download-progress', (progressObj) => {
let log_message = "Download speed: " + progressObj.bytesPerSecond;
log_message = log_message + ' - Downloaded ' + progressObj.percent + '%';
log_message = log_message + ' (' + progressObj.transferred + "/" + progressObj.total + ')';
console.log(log_message);
});
autoUpdater.on('update-downloaded', (info) => {
console.log('Update downloaded');
});
最佳答案
checkForUpdatesAndNotify()
只是在开发模式下不起作用。
如果你坚持在开发模式下测试它,你可以用 isPackaged
做一些 hack。 :
const app = require('electron').app;
Object.defineProperty(app, 'isPackaged', {
get() {
return true;
}
});
关于electron - 如何修复 electron.js 中的 "Skip checkForUpdatesAndNotify because application is not packed",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54147124/
我正在使用“Electron 更新程序”来检查自动更新 Electron 应用程序。 调用“checkForUpdatesAndNotify()”函数。 在控制台中,我收到“由于应用程序未打包而跳过
我是一名优秀的程序员,十分优秀!