0

我无法将电子更新器集成到我的项目中。我正在使用 Windows 系统。

首先我安装了电子更新器(通过 npm 或 yarn),它可以正常工作。

import { autoUpdater } from 'electron-updater'然后我通过或加载包 const {autoUpdater} = require('electron-updater')

构建并运行应用程序后,我会收到App threw an error during load以下 TypeError:

TypeError: Cannot read property 'name' of undefined
      at exports.fromCallback (E:\smaek-mm\node_modules\universalify\index.js:15:26)
      at Object.<anonymous> (E:\smaek-mm\node_modules\electron-updater\node_modules\fs-extra\lib\fs\index.js:57:27)
      at Object.<anonymous> (E:\smaek-mm\node_modules\electron-updater\node_modules\fs-extra\lib\fs\index.js:121:3)
      at Module._compile (module.js:642:30)
      at Object.Module._extensions..js (module.js:653:10)
      at Module.load (module.js:561:32)
      at tryModuleLoad (module.js:504:12)
      at Function.Module._load (module.js:496:3)
      at Module.require (module.js:586:17)
      at require (internal/module.js:11:18)

尝试了不同版本的 electron-updater、electron-builder、node 和 npm,尝试通过 yarn 构建,有或没有分布设置(通用)=> 都导致基本相同的问题。

我的项目使用SimulatedGREG/electron-vue。可以通过设置默认样板、安装 electron-updater 并取消注释准备好的 autoLoad 代码来重现问题。

有任何想法吗?我基本上被困了一天,找不到前进的路。

4

1 回答 1

0

似乎SimulatedGREG/electron-vue使用了一个非常过时的电子版本:

"electron": "^2.0.4"

实际上,这确实适用于最新的电子生成器:

"electron-builder": "^22.14.5"

但它不适用于最新的电子更新器:

"electron-updater": "^4.6.5"

将电子升级到最新版本解决了这个问题:

"electron": "^16.0.3"    

有关在 electron-vue 中升级电子的更多信息,请参见: SimulatedGREG/electron-vue #871

于 2021-12-02T07:44:47.567 回答