【Angular.js/bootstrap3】ng-repeatでrow、colを綺麗に出力させる。

完全に盲点だったんだけど、単純にブロックごとに分割されたオブジェクトをビューに渡してやればOK。

ビューはこんな感じ。

<div class="row" ng-repeat="row in rows">
    <div class="col-md-3" ng-repeat="col in row">
    </div>
</div>

てきな感じ。

下記エントリを見てハッとした。

http://stackoverflow.com/questions/11056819/how-would-i-use-angularjs-ng-repeat-with-twitter-bootstraps-scaffolding