显示胡子数组的字段名

Showing fieldnames of mustache array

本文关键字:字段 数组 显示      更新时间:2023-09-26

在下面的示例中:

{{#content}}
        <tr>
        {{#show}}
        <td>{{ID}}</td><td>{{fieldname1}}</td><td>{{fieldname2}}</td>
        {{/show}}
        </tr>
{{/content}}

是否也可以显示内容数组的字段/注释记号本身?因此显示"fieldname1"answers"fieldname2",而不是这些字段/键中的值。

感谢

不,Mustache.js无法做到这一点。您需要使用Handlebars之类的东西编写一个助手,如这个类似问题

中所述

使用:{{#each-topLevelObject}}