<script id="userlist-list-temple" type="text/x-handlebars-template">
{{#each this}}
<tr data-id="{{id}}" class="rooms-xz">
<td class="hhhh">{{name}}</td>
<td class="22" style="display: none">{{area}}</td>
<td class="33" style="display: none">{{type}}</td>
</tr>
{{/each}}
</script>
这是Handlebars.js模板引擎。
{{#each this}}表示遍历当前对象。
this表示当前的上下文。