我想使用把手比较迭代值。这是我的代码
{{#each accounts}}
{{#each projects}}
{{#if}} (compare accounts.project_id with projects._id)
// display the project name
{{else}}
// display not found
{{/if}}
{{/each}}
{{/each}}
请帮忙。我是新手/
最佳答案
使用{{compare}}
模块中的handlebars-helpers
帮助器。
{{#each accounts}}
{{#each projects}}
{{#compare accounts.project_id "==" projects._id)
// display the project name
{{else}}
// display not found
{{/compare}}
{{/each}}
{{/each}}
有关如何安装和使用帮助器的信息,请参见documentation。
关于node.js - 使用 Handlebars 比较迭代值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44014355/