我正在尝试从电子中分配app对象,但它返回为undefined。我试图调试这个,但我不能因为上帝的爱找出了什么是错的。这是我的逻辑片段
const ClientBootstrapper = function() {
this.App = null;
this.Init = function() {
const app = require('electron').app;
console.log(app); // undefined???
return // for debug
this.App = app;
});
});
module.exports = new ClientBootstrapper();
为什么这不起作用,我应该怎么做?
答案 0 :(得分:0)
失败的原因是因为我忘了将启动脚本从使用节点切换。在节点中需要电子会导致通向电子的路径。