1

我可以创建一个 jsrender 模板来访问这个 json 对象中的值“first”和“age”吗?

<script type="text/javascript">
    var names = { 
    "smith": [ 
        {
            "first" : "bill",
            "age" : "21"
        }
    ],
    "jones": [
        {
            "first" : "mary",
            "age" : "25"
        }
    ]
};
</script>
4

1 回答 1

1

架构看起来很奇怪。但是你可以这样写:

<script id="myTmpl" type="text/x-jsrender">
    {{:smith[0].first}}: Age: {{:smith[0].age}}
    {{:jones[0].first}}: Age: {{:jones[0].age}}
</script>
于 2012-10-21T03:01:37.363 回答