我有一个服务器文件,它根据我构建的restify
API向用户发送电子邮件。该文件位于/lib
目录下。当该文件mail_helper.js
尝试读取文件./email_templates/default-inline.html
时,它会失败。它试图从节点应用的email_template
而不是root
目录中找到lib
文件。文件夹结构如下所示:
- root
- package.json
- index.js (requires lib/mail_helper.js)
- lib
- mail_helper.js (reads file ./email_templates/default-inline.html)
- email_templates
- default-inline.html
从根目录运行node index.js
会引发错误:
错误:ENOENT:没有此类文件或目录,请打开&my-local-path \ root \ email-templates \ default-inline.html'
如何正确引用相对路径以避免这种情况?
答案 0 :(得分:0)
如Keith的评论所述,
相对路径应该写成:
path.join(__dirname, 'email_templates', 'default-inline.html')
在我的模块中的所有位置替换之后,这工作并修复了我的所有错误。