我正在尝试在电子中导入Node的fs,其中我试图使用require函数。
但是,我收到错误要求未定义。如何解决这个问题?我们是否需要为电子和Nodejs集成添加特殊配置?我在我的index.html
文件中写下脚本:
function myFunction() {
var fs = require('fs')
}
答案 0 :(得分:0)
在你的index.html我很早就
了if (window.require) {
window.requireNode = window.require;
window.require = undefined;
}
然后再
<script src="js/lib/require.js"></script>
所以我可以做到
window.requireNode("remote")
在我的网页中加载“节点电子”内容
和传统
window.require("my/module")
加载我的模块