如何遍历车把中的对象数组?


108

这似乎是一个愚蠢的问题,但我似乎在任何地方都找不到答案。

我正在使用此Web API,该Web API以JSON格式返回对象数组:

对象数组

把手文档显示以下示例:

<ul class="people_list">
  {{#each people}}
  <li>{{this}}</li>
  {{/each}}
</ul>

在以下情况下:

{
  people: [
    "Yehuda Katz",
    "Alan Johnson",
    "Charles Jolley"
  ]
}

就我而言,我没有该数组的名称,它只是响应的根对象。我尝试使用{{#each}}没有运气。

第一次使用把手...我想念什么?

更新

这是一个简化的小提琴,向您展示我在问什么:http : //jsfiddle.net/KPCh4/2/

车把是否要求上下文变量是对象而不是数组?


您如何将api结果传递给模板(当前)?
Gabriele Petrioli 2014年

@ GabyakaG.Petrioli API不是我的,我无法控制它。我只是使用jQuery ajax并获取响应对象,该对象是对象的数组。
emzero 2014年

Answers:


156

您可以传递this到每个块。看到这里:http : //jsfiddle.net/yR7TZ/1/

{{#each this}}
    <div class="row"></div>
{{/each}}

那么可以{{#each people}}在内部循环内部调用外部循环的索引号{{#each this}}吗?像{{people@index}}
RegarBoy '17

17

这个小提琴既有each直接的json。http://jsfiddle.net/streethawk707/a9ssja22/

下面是遍历数组的两种方法。一种是直接传递json,另一种是传递给内容持有者时命名json数组。

范例1:以下示例直接在small_data变量中调用json键(数据)。

在html中,使用以下代码:

<div id="small-content-placeholder"></div>

以下内容可以放在html的标题或正文中:

<script id="small-template" type="text/x-handlebars-template">
    <table>
        <thead>
            <th>Username</th>
            <th>email</th>
        </thead>
        <tbody>
            {{#data}}
                <tr>
                    <td>{{username}}
                    </td>
                    <td>{{email}}</td>
                </tr>
            {{/data}}
        </tbody>
    </table>
</script>

以下文件已准备就绪:

var small_source   = $("#small-template").html();
var small_template = Handlebars.compile(small_source);

下面是json:

var small_data = {
            data: [
                {username: "alan1", firstName: "Alan", lastName: "Johnson", email: "alan1@test.com" },
                {username: "alan2", firstName: "Alan", lastName: "Johnson", email: "alan2@test.com" }
            ]
        };

最后将json附加到内容持有者:

$("#small-content-placeholder").html(small_template(small_data));

实例2:使用每个迭代。

考虑下面的json。

var big_data = [
            {
                name: "users1",
                details: [
                    {username: "alan1", firstName: "Alan", lastName: "Johnson", email: "alan@test.com" },
                    {username: "allison1", firstName: "Allison", lastName: "House", email: "allison@test.com" },
                    {username: "ryan1", firstName: "Ryan", lastName: "Carson", email: "ryan@test.com" }
                  ]
            },
            {
                name: "users2",
                details: [
                    {username: "alan2", firstName: "Alan", lastName: "Johnson", email: "alan@test.com" },
                    {username: "allison2", firstName: "Allison", lastName: "House", email: "allison@test.com" },
                    {username: "ryan2", firstName: "Ryan", lastName: "Carson", email: "ryan@test.com" }
                  ]
            }
      ];

在将json传递给内容持有者时,只需以这种方式命名:

$("#big-content-placeholder").html(big_template({big_data:big_data}));

模板看起来像:

<script id="big-template" type="text/x-handlebars-template">
    <table>
        <thead>
            <th>Username</th>
            <th>email</th>
        </thead>
        <tbody>
            {{#each big_data}}
                <tr>
                    <td>{{name}}
                            <ul>
                                {{#details}}
                                    <li>{{username}}</li>
                                    <li>{{email}}</li>
                                {{/details}}
                            </ul>
                    </td>
                    <td>{{email}}</td>
                </tr>
            {{/each}}
        </tbody>
    </table>
</script>

如何使用gulp车把进行编译?
webkitfanz

10

我的意思是template()打电话

您只需要将结果作为对象传递。所以不要打电话

var html = template(data);

var html = template({apidata: data});

{{#each apidata}}在您的模板代码中使用

http://jsfiddle.net/KPCh4/4/上的演示
删除了一些if崩溃的剩余代码


3
很好,但AZ答案更好。使用{{#each this}}是正确的形式。
emzero 2014年

确实,这种方式更有意义,谢谢!
woohoo

8

把手可以使用数组作为上下文。您可以.用作数据的根。因此,您可以使用循环遍历数组数据{{#each .}}

var data = [
  {
    Category: "General",
    DocumentList: [
      {
        DocumentName: "Document Name 1 - General",
        DocumentLocation: "Document Location 1 - General"
      },
      {
        DocumentName: "Document Name 2 - General",
        DocumentLocation: "Document Location 2 - General"
      }
    ]
  },
  {
    Category: "Unit Documents",
    DocumentList: [
      {
        DocumentName: "Document Name 1 - Unit Documents",
        DocumentList: "Document Location 1 - Unit Documents"
      }
    ]
  },
  {
    Category: "Minutes"
  }
];

$(function() {
  var source = $("#document-template").html();
  var template = Handlebars.compile(source);
  var html = template(data);
  $('#DocumentResults').html(html);
});
.row {
  border: 1px solid red;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0/handlebars.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<div id="DocumentResults">pos</div>
<script id="document-template" type="text/x-handlebars-template">
  <div>
  {{#each .}}
    <div class="row">
      <div class="col-md-12">
        <h2>{{Category}}</h2>
        {{#DocumentList}}
        <p>{{DocumentName}} at {{DocumentLocation}}</p>
        {{/DocumentList}}
      </div>
    </div>
  {{/each}}
  </div>
</script>


1

使用this{{this}}。请参阅以下node.js中的代码:

var Handlebars= require("handlebars");
var randomList= ["James Bond", "Dr. No", "Octopussy", "Goldeneye"];
var source= "<ul>{{#each this}}<li>{{this}}</li>{{/each}}</ul>";
var template= Handlebars.compile(source);
console.log(template(randomList));

控制台日志输出:

<ul><li>James Bond</li><li>Dr. No</li><li>Octopussy</li><li>Goldeneye</li></ul>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.