如何在 RequireJS 模块中使用 NodeJS 全局模块对象
我决定使用 RequireJS 作为 NodeJS 中的模块加载器。
不幸的是,我定义的模块无法访问某些使用 CommonJS 方法加载模块时可用的“全局”对象。这包括位于模块范围内的对象,例如 __dirname
和 __filename
。
是否有一种相对简单的方法在 RequireJS 模块中使用这些对象?
I decided to use RequireJS as my module loader in NodeJS.
Unfortunately, the modules I define don't have access to some of the "global" objects that would be be available if the modules were loaded using the CommonJS method. This includes the objects that are located in the module scope, such as __dirname
and __filename
.
Is there a relatively simple approach to using these objects in the RequireJS modules?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
github 上的 requirejs 问题网站对此进行了介绍(https://github.com/jrburke/requirejs/ issues/89),他们似乎建议的解决方法是使用 module.uri。
This is covered on the requirejs issues site on github (https://github.com/jrburke/requirejs/issues/89) and the workaround they seem to suggest is to use module.uri instead.