1. ホーム
  2. angularjs

[解決済み] 文字列の配列でorderbyフィルタを動作させるには?

2023-05-04 13:27:23

質問

以下は、動作しないコードです。デモです。 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'];  
});

どのように解決するのですか?

メソッドで並び替えられるので、toStringメソッドで

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