0

在我的应用程序中,我使用 JSON 模板来显示内容。我在模板中使用条件语句

{{#if document_id_1}} \
{{filename_1 }}
{{document_size_1}}
{{document_type_1}}
{{/if}}\ 
{{#if document_id_2}} \
{{filename_2 }}
{{document_size_2}}
{{document_type_2}}
{{/if}}\ 
 ................ 

我需要对此运行循环(for 或 while)以避免在我的代码中提及更多 if 条件。

我如何在 JSON 模板中运行循环???

4

1 回答 1

0

假设 Mustache 并假设所有文档看起来都相同并假设此结构

{
  documents: [
    { filename: 'document_1', ... },
  ]
}

{{#documents}}
  {{ filename }}
  //other properties below
{{/documents}}
于 2013-11-12T07:31:10.563 回答