2017-11-01 15 views
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 誰もが同じ問題を抱えていたら、私はとても助かります。ありがとう!

答えて

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> 
関連する問題