我正在尝试访问模块,但嵌套有点失控
要求( “../../../文件夹/更深/ someFile”)
反正只是使用require(“Folder / Deeper / somefile”)
我试过设定
require.paths = [‘/ media / work / Project’];
但这似乎不起作用,对我来说也有点难看.
有没有其他选择.有没有办法为此编写包装器?
最佳答案
也许这个?
原文链接:https://www.f2er.com/js/429409.htmlrequire.paths.unshift( '../../..' );
require("Folder/Deeper/somefile");
require.paths An array of search paths
for require(). This array can be
modified to add custom paths.Example: add a new path to the
beginning of the search list06001