如何从这个对象数组中提取数据

How do I extract out the data from this array of arrays of objects

我正在从数据库中取出数据,因为数据库包含多个记录集,所以它的输出结果如下:

 [
      [ { TotalRecords: 11873 } ],
   [
    {
          ProductID: 12394,
          ProductTitle: 'XYZ1'
    },
    {
          ProductID: 14282,
          ProductTitle: 'XYZ2'
    },
    {
          ProductID: 11405,
          ProductTitle: 'XYZ3'
    },
    {
          ProductID: 12467,
          ProductTitle: 'XYZ4'
    }    
  ]
]

我将所有这些数据作为一个名为 products 的对象传递到我的视图 (Handlebars)。如何循环包含 ProductIDProductTitle 信息的第二个数组以将其显示在页面上?

假设位置已知,可以这样遍历第二个数组:

{{#each products.[1]}}
  <p>{{ProductID}}: {{ProductTitle}}</p>
{{/each}}

注意 [1] 指定索引号。