我正在使用带节点的json模板。我的json返回以下内容:
garden = {
whichFruit: "orange",
fruit: {
orange: {color: "orange", shape: "circle"},
apple: {color: "red", shape: "round"}
}
}
通常,我可以这样做 garden.fruit [whichFruit]
然而,在我的json模板中,我有:
{garden.fruit[{whichFruit}]}
导致错误,我不认为它喜欢嵌套括号?
到底有没有?