gpt4 book ai didi

javascript - Node.js - Handlebars 引用变量

转载 作者:行者123 更新时间:2023-12-03 04:28:30 24 4
gpt4 key购买 nike

在 Handlebars View 中 - 有没有办法引用其中有空格的对象键?关键是对象中的“记录号”,但我似乎无法在 View 中引用它。例如 - 我在 View 中有以下代码:

{{#each records}}
{{this.'Record ID'}}
{{/each}}

数组“记录”来自 Controller :

records = [
{
'Record ID':3
},
{
'Record ID':3
}
];

我收到的错误:

 Expecting 'ID', got 'STRING'

我也尝试过“this['Record Number']”,但出现同样的错误。

最佳答案

将括号与点一起使用,不带引号:

{{#each records}}
{{this.[Record ID]}}
{{/each}}

关于javascript - Node.js - Handlebars 引用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43599907/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com