自从我从WebStorm 6更新到7后,我看到了这个Jade错误.Jade版本是0.35。
这是路线:
exports.index = function (req, res) {
var model = // get collection;
res.render('index', {data: model});
};
我在WebStorm 7中的index.jade中看到的Jade编译错误
C:\Docs\Source\Projects\unicorn\src\node_modules\jade\bin\jade:163
throw e
^
TypeError: index.jade:11
9|
10| block content
> 11| for item in data
12| div #{item._id} #{item.view_key}
13|
14| form(role='form')
Cannot read property 'length' of undefined
at jade.debug.unshift.lineno (eval at <anonymous> (C:\Docs\Source\Projects\unicorn\src\node_modules\jade\lib\jade.js:152:8), <anonymous>:139:31)
at eval (eval at <anonymous> (C:\Docs\Source\Projects\unicorn\src\node_modules\jade\lib\jade.js:152:8), <anonymous>:176:4)
at C:\Docs\Source\Projects\unicorn\src\node_modules\jade\lib\jade.js:153:35
at C:\Docs\Source\Projects\unicorn\src\node_modules\jade\bin\jade:154:17
at C:\Docs\Source\Projects\unicorn\src\node_modules\jade\node_modules\mkdirp\index.js:38:26
at Object.oncomplete (fs.js:107:15)
页面在浏览器中正确呈现。这似乎是一个WebStorm IDE问题。有什么建议?
你得到这个错误是因为WebStorm Jade观察者试图编译文件并且找不到变量“length”(你使用局部变量吗?)
所以为了解决这个问题你应该:
编辑WS观察者:文件 - >设置 - >工具 - >文件监视器 - >点击玉石,你可以在“Arguments”字段中插入这样的东西:-O“{length:24,another_var:{state:1,string :\“名称\”}}”