10

为什么相同的 JSON 对象代码生成带有ul元素的输出,而不是带有table标签的输出。

我有我的 Mustache 模板,例如:

<div id="template-ul">
    <h3>{{name}}</h3>
    <ul>
        {{#students}}
        <li>{{name}} - {{age}}</li>
        {{/students}}
    </ul>
</div>

<div id="template-table">
    <table>
        <thead>
            <th>Name</th>
            <th>Age</th>
        </thead>
        <tbody>
        {{#students}}
            <tr>
                <td>{{name}}</td>
                <td>{{age}}</td>
            </tr>
        {{/students}}
        </tbody>
    </table>
</div>

这是javascript代码:

var testing = {
    "name" : "student-collection",
    "students" : [
        {
            "name" : "John",
            "age" : 23
        },
        {
            "name" : "Mary",
            "age" : 21
        }
    ]
};

var divUl = document.getElementById("template-ul");
var divTable = document.getElementById("template-table");

divUl.innerHTML = Mustache.render(divUl.innerHTML, testing);
divTable.innerHTML = Mustache.render(divTable.innerHTML, testing);

这是 jsFiddle 上的代码 - http://jsfiddle.net/pRSjH/2/

4

2 回答 2

31

您还可以在 tbody 中评论小胡子标签。并且表格将正确构建。
我的模板示例:

<div id="template-table">
    <table>
        <thead>
            <th>Name</th>
            <th>Age</th>
        </thead>
        <tbody>
        <!--{{#students}}-->
            <tr>
                <td>{{name}}</td>
                <td>{{age}}</td>
            </tr>
        <!--{{/students}}-->
        </tbody>
    </table>
</div>
于 2013-08-28T04:28:59.637 回答
2

divTable.innerHTML返回这个而不是正确的模板。可能是因为浏览器试图呈现无效的 HTML。我认为您可以将模板放入<script>标签中以解决此问题(小提琴

于 2013-03-23T13:13:43.150 回答