问题

在控制台打印时中文乱码问题。

问题原因是因为字符编码的问题,Windows 下输入 chcp,可以查看到当前字符编码,如果大家经历过 asp 时代的话,就知道:每个 asp 页面代码的顶部,都必须定义一个数字表示的字符集。而常见的 gb2312 的值是 936,utf8 的值是 65001 解决办法修改 package.json 文件

"start": "chcp 65001 && electron-forge start"

Electron Security Warning (Insecure Content-Security-Policy) This renderer process has either no Content Security

解决方案 在 main.js 中添加如下代码

process.env['ELECTRON_DISABLE_SECURITY_WARNINGS'] = 'true'

Electron Deprecation Warning (nodeIntegration default change)

解决方案

const createWindow = () => {
 // Create the browser window.
 mainWindow = new BrowserWindow({
   webPreferences: {
     nodeIntegration: true,
  },
});