Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个脚本:第一个需要第二个。
第一个脚本 main.js:
... var a = require(second); ...
2d。脚本 second.js
path = path/of/the/main/script
我想在不将其作为参数传递的情况下访问第二个脚本中第一个脚本的路径。这是实现它的方法吗?
module.parent.filename保存调用脚本的文件名。请参阅此处了解更多信息。
module.parent.filename