【发布时间】:2015-05-25 04:43:41
【问题描述】:
我正在将 PHP 模板转换为 Node.js/Express 中的 EJS。模板文件有些复杂,因此调试它们并不容易。 Node 没有给我任何有用的调试信息,所以它使这项任务几乎不可能完成。这是一个示例错误消息。
SyntaxError: Unexpected string in "app/views/profile/index.ejs"
at Object.Function (<anonymous>)
at exports.compile (/Users/Gavin/Web/node_modules/ejs/lib/ejs.js:237:14)
at Object.exports.render (/Users/Gavin/Web/node_modules/ejs/lib/ejs.js:284:10)
at View.exports.renderFile [as engine] (/Users/Gavin/Web/node_modules/ejs/lib/ejs.js:318:20)
at View.render (/Users/Gavin/Web/node_modules/express/lib/view.js:76:8)
at Function.app.render (/Users/Gavin/Web/node_modules/express/lib/application.js:502:10)
at ServerResponse.res.render (/Users/Gavin/Web/node_modules/express/lib/response.js:777:7)
at Object.exports.profile_index [as handle] (/Users/Gavin/Web/app/controllers/routes/profile.js:72:6)
at next_layer (/Users/Gavin/Web/node_modules/express/lib/router/route.js:103:13)
at Object.exports.verify_user [as handle] (/Users/Gavin/Web/app/controllers/routes/account.js:305:10)
寻找这种含糊不清的错误消息的来源是非常乏味的。有没有更简单的方法来调试 EJS 文件?
【问题讨论】:
标签: javascript node.js express