我正在使用带有节点的 json 模板。我的 json 返回以下内容:
garden = {
whichFruit: "orange",
fruit: {
orange: {color: "orange", shape: "circle"},
apple: {color: "red", shape: "round"}
}
}
所以通常情况下,我可以做这个 garden.fruit[whichFruit]
但是在我的 json 模板中,我有:
{garden.fruit[{whichFruit}]}
这会导致错误,我认为它不喜欢嵌套括号?
有没有办法解决?