私は関数の結果によって結果を並べなければなりません。関数の角度ソート結果
getResultsはいくつかの結果を計算する関数です。私はそれを並べ替えたいと思います。
<div ng-repeat="x in dataTeam | orderBy:results">
<p>{{getResults(x.id) | number: 2}} % - {{x.team_name}}</p>
:
$http.get("http://localhost:8080/api/team")
.then(function successCallback(response){
$scope.dataTeam = response.data.team; };
// this is dataTeam
{ "team": [
{ "id": 1, "team_name": "ABC" },
{ "id": 2, "team_name": "FGH" },
{ "id": 3, "team_name": "MNO" } ] }
$scope.getResults = function (item){
/* some function here */
return results;
};
//from this JSON a calculate getResults by
team_id {
"teamStatistic": [
{ "team_id": 1, "width": "213", "height": "423" },
{ "team_id": 2, "width": "643", "height": "432" },
{ "team_id": 3, "width": "526", "height": "246" }
] }
結果である何は
x
Demo Plunker
完全なコードを受信する方法であります'getResults()'関数の? –
結果は1から100の間の数字です – mrkibzk
dataTeamの構造を投稿してください –