我通过运行electron ./dist/main.js
在电子renderer-process
中,我加载了一个网页并在该网页中运行require('lodash')
。
当我通过http://
加载网页时,无法获得lodash
模块,
但是当我使用file://
时,我明白了。
所以我想知道电子require()
中http
和file
之间的renderer-process
有什么区别。
答案 0 :(得分:1)
file://
表示您正在从自己的计算机中获取文件,而http://
用于从server
中请求文件。