私はいくつかのレコードとその作成日でレンダリングされたテーブルを持っています。 $scope
データは次のようになります。AngularJSフロントエンドの日付の並べ替え
$scope.data = [{
"FeeId": "17",
"FirmName": "LAWFIRM1",
"countryId": "IN",
"filing": "REI-Reissue",
"agentFeeCode": "AGNT",
"feeType": "GOVT",
"Term": "Fixed",
"Amount": "150",
"comments": "test comment",
"startDate": "13-DEC-16"
},{
"FeeId": "18",
"FirmName": "LAWFIRM2",
"countryId": "IN",
"filing": "REI-Reissue",
"agentFeeCode": "AGNT",
"feeType": "GOVT",
"Term": "Open",
"Amount": "150",
"comments": "test comment",
"startDate": "11-DEC-16"
}]
私はstartDate
でのソートベースAngularJSフロントエンドを必要とします。現在、string
形式の日付では機能していません。
AngularJSを使用してフロントエンドでstartDate
でデータを並べ替えるにはどうすればよいですか?
Finalyフィードバックを、THX。 – lin