2017-11-01 10 views
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 누구든지 같은 문제가 있다면 매우 도움이 될 것입니다. 고마워요!

답변

0

최소 복잡한 솔루션 기반의 그리드 시스템의 적응을 사용하는 것입니다

https://github.com/JohnnyTheTank/bootstrap-block-grid

그것은 당신이 한 번에 열 수를 설정 더 나은 방법을 다음과 모든 요소가이 규칙을 따르지하고 레이아웃을 동적으로 조정합니다.

<div class="block-grid-xs-2 block-grid-sm-3 block-grid-md-4"> 
    <div> 
     Content 1 
    </div> 
    <div> 
     Content 2 
    </div> 
    <div> 
     Content 3 
    </div> 
    <div> 
     Content 4 
    </div> 
    <div> 
     Content 5 
    </div> 
    <div> 
     Content 6 
    </div> 
</div>