我可以在 express-handlebars 中使用 'this' 运算符作为同一 express-handlebars 中的数组索引吗?
can i use 'this' operator in express-handlebars as array index in the same express-handlebars?
{{@root.comments.[this.[0]].[0]._id}}
Error: Parse error on line 96:
...t.comments.[this.[0]].[0]._id}}:5:31)
at prog (/home/nkhil/Nikhil/test-handlebar/node_modules/handlebars/dist/cjs/handlebars/runtime.js:221:12)
at execIteration (/home/nkhil/Nikhil/test-handlebar/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js:51:19)
有人可以帮我吗?
提前致谢
不,你不能那样做。它不是把手中的有效表达式。尝试保存状态而不是使用此运算符。
{{@root.comments.[this.[0]].[0]._id}}
Error: Parse error on line 96: ...t.comments.[this.[0]].[0]._id}}:5:31) at prog (/home/nkhil/Nikhil/test-handlebar/node_modules/handlebars/dist/cjs/handlebars/runtime.js:221:12) at execIteration (/home/nkhil/Nikhil/test-handlebar/node_modules/handlebars/dist/cjs/handlebars/helpers/each.js:51:19)
有人可以帮我吗?
提前致谢
不,你不能那样做。它不是把手中的有效表达式。尝试保存状态而不是使用此运算符。