JSON 它来自:
unverifiedCompanies=[{"email":"testcompany@company.com","company_number":"09999999","company_name":"Name_123","full_name":"test","phone_number":"xyz"},{"email":"testtwo@company.com","company_number":"09999999","company_name":"Name_123","full_name":"test","phone_number":"xyz"}]
迭代
{{#each unverifiedCompanies}}
<tr>
<td>{{this}}</td>
<td>{{this.company_name}}</td>
<td>{{this.full_name}}</td>
<td>{{phone_number}}</td>
<td>{{email}}</td>
</tr>
{{/each}}
但是,仅{{this}}
显示{"email":"testcompany@company.com","company_number":"09999999","company_name":"Name_123","full_name":"test","phone_number":"xyz"}
或{"email":"testtwo@company.com","company_number":"09999999","company_name":"Name_123","full_name":"test","phone_number":"xyz"}
所有其他都不会显示。
我错过了什么吗?