2014-04-25から1日間の記事一覧

AngularJS チュートリアル step-4

blog1.mammb.com前回からの続きになります。 前回分の index.html にソート条件追加 Sort by: <select ng-model="orderProp"> <option value="name">Alphabetical</option> <option value="age">Newest</option> </select> で、ソート条件を orderBy で追加 <li ng-repeat="phone in phones | filter:query | orderBy:orderProp"> で以下のようになる。 </li>