SORU
24 Ocak 2013, PERŞEMBE


Nasıl orderby filtre dizeleri bir dizi çalışma yapmaya?

Burada çalışmayan kodu: Demo: http://jsfiddle.net/8dt94/63/

<div ng-controller="MyCtrl">    
    <input type="text" ng-model="searchText" />
  <ul ng-repeat="strVal in arrVal|orderBy|filter:searchText" >
      <li>{{strVal}}</li>
  </ul>
</div>

var app=angular.module('myApp', []);
app.controller('MyCtrl', function ($scope,$filter) {
  $scope.arrVal = ['one','two','three','four','five','six'];  
});

CEVAP
7 NİSAN 2013, Pazar


Olabilirdi yöntemi kullanabilirsiniz bir yöntemle sipariş edebilirsiniz

<ul ng-repeat="strVal in arrVal | orderBy:'toString()' | filter:searchText">

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • Andrey Menshikov

    Andrey Mensh

    28 Ocak 2012
  • Santozz Yazz

    Santozz Yazz

    23 Mart 2014
  • Utah Valley Online

    Utah Valley

    9 AĞUSTOS 2010