1

私のHTML:

    <table class="table">
        <thead>
        <tr>
            <th><a href="">Name</a></th>
            <th><a href="">Issued shares</a></th>
            <th><a href="">Closing price</a></th>
            <th><a href="" ng-click="predicateBlueChip = 'marketCap()'; reverseBlueChip = !reverseBlueChip">Market capitalisation</a></th>
        </tr>
        </thead>
        <tbody>
        <tr ng-repeat="listing in listings | orderBy:predicateBlueChip:reverseBlueChip">
            <td><a ng-href="#/browse/listing/{{ listing.id }}">{{ listing.name_short }}</a></td>
            <td>{{ listing.last_price.issued_shares }}</td>
            <td>{{ listing.last_price.price_close }}</td>
            <td>{{ marketCap(listing) | currency:'R' }}</td>
        </tr>
        </tbody>
    </table>

コントローラ:

   $scope.predicateBlueChip = 'marketCap()';
    $scope.reverseBlueChip = true;

    $scope.marketCap = function(listing) {
        return Math.round(listing.last_price.price_close * listing.last_price.issued_shares / 1000000);
    }

orderBy は機能しません。どこが間違っているのかわかりません。orderBy に関する他の多数の投稿では、私の問題は解決しませんでした。助言がありますか?

4

1 に答える 1