我正在使用这个-> https://github.com/jquery/jquery-tmpl
我需要的是使用上述插件递归地显示一组对象。
这怎么行不通?->{{if value.exists != false}} checked {{/if}}
请考虑以下代码:
{{each list}}
<li><label class="checkbox{{if value.exists != false}} active{{/if}}"><input type="checkbox" {{if value.exists != false}} checked{{/if}} disabled>${$value.type}</label></li>
{{/each}}
物体:
{ "list":
[
{ type: "GRAPH_A", exists: true },
{ type: "GRAPH_B", exists: false },
{ type: "GRAPH_C", exists: false },
]
}
这是我得到的错误:
ReferenceError:未定义值源文件:app/scripts/jquery.tmpl.min.js
线路:10