json模板系统中的嵌套括号,带有对象

时间:2011-04-12 16:46:15

标签: json jsontemplate

我正在使用带节点的json模板。我的json返回以下内容:

garden = {
   whichFruit: "orange",
   fruit: {
     orange: {color: "orange", shape: "circle"},
     apple: {color: "red", shape: "round"}
   }
}

通常,我可以这样做     garden.fruit [whichFruit]

然而,在我的json模板中,我有:

{garden.fruit[{whichFruit}]}  

导致错误,我不认为它喜欢嵌套括号?

到底有没有?

0 个答案:

没有答案