我正在使用var remote = require('electron').remote;
并尝试使用remote.getGlobal('config').siteUrl
在我的main.js中,我使用global
设置值。
global.config = {siteUrl:"https://localhost:8088"};
在html端(渲染器端)我在mac上创建darwin undefined
时得到的值为.app
。
另一方面,当我使用npm start
运行应用程序时,它运行正常。