我在使用 ICanHaz.js / Mustache 时遇到了迭代问题。我想遍历 JSON 结构的根并提取特定参数。这是我的 JSON:
{
"1": {
"param1": "true",
"param2": "false",
"param3": "false",
"targetMe": "ADMINUSERS"
},
"2": {
"param1": "true",
"param2": "false",
"param3": "false",
"targetMe": "ADMINUSERS"
},
"3": {
"param1": "true",
"param2": "false",
"param3": "false",
"targetMe": "ADMINUSERS"
}
}
这是我的 ICanHaz 模板:
<script id="groupselect_template" type="text/html">
{{ /. }}
<option value="{{name}}">{{name}}</option>
{{ /. }}
</script>
这是我的 JS:
var iterationFunc = function(data) {
var temp = ich.groupselect_template(data);
$('#selectdiv').append(temp);
}
我根据这些过去的答案(here、here和here)建立了这个结构,但我似乎无法让它发挥作用。任何人都可以帮忙吗?由于 ICH 里面有胡须,我知道更广泛的基于胡须的解决方案可以工作。