0
私はnodejsとmongodbに私の方法を(私はそれについて0知識を持っていたので、4日間で多くを学んだ)私の方法を管理しました。しかし、私は問題を収集情報でブートストラップテーブルを設定しています。NodeJSハンドルバーとポップアップブートストラップテーブル
This is my code so far:
<table class="table table-striped">``
<tr>
<th>First name</th>
<th>Last name</th>
<th>Email</th>
<th>Award description</th>
<th>Award given date</th>
</tr>
{{#each employees}}
<tr>
{{#each this}}
<td>{{this.firstName}}</td>
<td> {{this.lastName}}</td>
<td>{{this.email}}</td>
{{#each awards}}
<td>{{this.description}}</td>
<td>{{this.date}}</td>
{{/each}}
</tr>
{{/each}}
</tr>
{{/each}}
</table>
other.Somethingの下でそれは私が望むすべてを出力しますが、正しい方法でtable.Whatに私がやろうとしているではない1行のすべてを取得するが、単一のユーザー1賞の説明と受賞日付https://imgur.com/a/61xBS 誰もが同じ問題を抱えていたら、私はとても助かります。ありがとう!