0
나는 nodejs와 mongodb에 내 방식대로 google을 관리했다. (내가 그것에 대해 지식이 없으므로 4 일 만에 많은 것을 배웠다.) 그러나 콜렉션 정보로 부트 스트랩 테이블을 채우는 데 문제가있다.NodeJS-handlebars 및 부트 스트랩 테이블 채우기
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>
그것은 내가 원하는 모든 출력,하지만 내가 할 노력하고있어 table.What에서 올바른 방법으로 하나의 행에 모든 것을 얻을하지만, 상 설명과 other.Something에서 단일 사용자 하나에 대한 수상 일 like : https://imgur.com/a/61xBS 누구든지 같은 문제가 있다면 매우 도움이 될 것입니다. 고마워요!