Ng-repeat 整数值

Ng-repeat on integer value

我正在尝试在 div 上使用 ng-repeat,它应该包含星形图像,JSON 中的每个馅饼都有一个 rating 属性 从 1-5,我想用这个值循环出 x 颗星。我已经让这个有点工作了,但它的缺陷在于我无法重新排序数组并使星星跟随列表中的正确项目,因为我正在使用 [$index] 来跟踪迭代。

我的解决方案也很丑陋,因为我创建的数组具有与 rating 属性 的值一样多的索引占位符,然后将其推入数组以循环出适当数量的图像。我想要一个更优雅的解决方案。

如果不使用 [$index],我该如何解决这个问题?

JSON 的片段:

{"pies": [
    ...

    {
        "name": "Blueberry pie", 
        "imageUrl": "img/blueberrypie.png", 
        "id": "1",
        "rating": "5", //Ng-repeat depending on this value
        "description": "Blueberry pie is amazing."
    },

    ...
]}

我的控制器:

pieShopApp.controller('shopCtrl', ['$scope', '$http', '$routeParams', function ($scope, $http, $routeParams) {
    $scope.pieId = $routeParams.pieId,
    $scope.sortingOptions = ['A-Z', 'Rating'],
    $scope.sortingValues = ['name', 'rating'],
    $scope.ratings = [],
    $http.get('jsons/pies.json')
         .success(function(data, status) {
            $scope.pies = data;

            for (i = 0; i < $scope.pies.pies.length; i++) {

                switch ($scope.pies.pies[i].rating) {

                    case "1": $scope.ratings.push(["1"]); break;

                    case "2": $scope.ratings.push(["1", "2"]); break;

                    case "3": $scope.ratings.push(["1", "2", "3"]); break;

                    case "4": $scope.ratings.push(["1", "2", "3", "4"]); break;

                    case "5": $scope.ratings.push(["1", "2", "3", "4", "5"]); break;
                }
            }
            console.log($scope.ratings);
         })
         .error(function(status) {
            console.log(status);
         })
}]);

包含馅饼项的列表:

<div id="pie-list-wrapper">
    <ul class="nav">
        <a href="#/pies/pieid" ng-repeat="pie in pies.pies | filter:query | orderBy:orderProp">
            <li class="list-item rounded-corners box-shadow">
                <aside>
                    <img src="{{pie.imageUrl}}" no-repeat alt="Image of the pie">
                </aside>
                <header>
                    <h1 ng-bind="pie.name" id="item-name" class="bold-text"></h1>
                </header>
                <article>
                    <span ng-bind="pie.description" id="item-desc"></span>
                </article>
                <footer id="item-rating">
                    <div ng-repeat="rating in ratings[$index]" class="rating-box"></div> //Contains the stars
                </footer>
            </li>
        </a>
    </ul>
</div>

结果:

结帐this

<div ng-app='myApp' ng-controller="Main">
  <span ng-repeat="n in range('5')">Start{{$index}} &nbsp;&nbsp;</span>
</div>

$scope.range = function(count){

  var ratings = []; 

  for (var i = 0; i < count; i++) { 
    ratings.push(i) 
  } 

  return ratings;
}

将您的html更改为关注

<div id="pie-list-wrapper">
  <ul class="nav">
    <a href="#/pies/pieid" ng-repeat="pie in pies.pies | filter:query | orderBy:orderProp">
      <li class="list-item rounded-corners box-shadow">
        <aside>
          <img src="{{pie.imageUrl}}" no-repeat alt="Image of the pie">
        </aside>
        <header>
          <h1 ng-bind="pie.name" id="item-name" class="bold-text"></h1>
        </header>
        <article>
          <span ng-bind="pie.description" id="item-desc"></span>
        </article>
        <footer id="item-rating">
          <div ng-repeat="start in range(pie.rating)" class="rating-box"></div> //Contains the stars
        </footer>
      </li>
    </a>
  </ul>
</div>

看起来您正在对 pies 进行迭代,这就是 $index 从中获取其值的地方。 而不是 ng-repeat="rating in ratings[$index]" 你应该使用 ng-repeat="rating in range(pie.rating)" 这样,评分就会在您点餐时跟随您的馅饼。 然后你可以完全删除控制器中的循环。

您能否再提供一点 HTML 以便我们了解 $index 的来源?

此致, 卡姆森西

编辑: 您确实在迭代 pies.pies ng-repeat="pie in pies.pies | filter:query | orderBy:orderProp" 所以我之前写的应该有用。请参阅下文了解详尽的更改。

控制器:

$http.get('jsons/pies.json')
     .success(function(data, status) {
        $scope.pies = data;
     })
     .error(function(status) {
        console.log(status);
     })

HTML:

<div ng-repeat="rating in range(pie.rating)" class="rating-box"></div>

EDIT2:抱歉,我忘记了范围函数(灵感来自 Ariya Hidayat):

$scope.range = function(count){
    return Array.apply(0, Array(+count));
}

问题是 ng-repeat 只适用于数组或对象,所以你不能说迭代 x 次(而 x 是一个数字)

一个解决方案是在 JavaScript:

中编写一个函数
$scope.getNumber = function(num) {
    return (new Array(num));
}

然后使用这个 html 来显示没有 $index 的星星:

<div ng-repeat="rating in getNumber(pie.rating)"></div> 

在 Angular 1.4+ 中使用空数组时出现以下错误:

Error: [ngRepeat:dupes] Duplicates in a repeater are not allowed.

以下作品:

$scope.range = function(count) {
    return Array.apply(0, Array(+count)).map(function(value,index){
        return index;
    });
}

<div ng-app='myApp' ng-controller="Main">
    <span ng-repeat="n in range(5)">Start{{$index}} &nbsp;&nbsp;</span>
</div>

我是这样解决的: "items" 是您在 $scope 中的对象数组,访问 属性 "rating",如果该值小于或等于 "rating" [,您可以显示星号=23=].

在这个例子中,我使用了一些图标字体,但对于图像来说是一样的。

<div ng-repeat="item in items">
    <div class="item-offers"">
        <img ng-src="{{item.image}}">
        <div class="item-not-rating">
            <i class="icon ion-ios-star icon-rating" ng-if="item.rate >= 1"></i>
            <i class="icon ion-ios-star icon-rating" ng-if="item.rate >= 2"></i>
            <i class="icon ion-ios-star icon-rating" ng-if="item.rate >= 3"></i>
            <i class="icon ion-ios-star icon-rating" ng-if="item.rate >= 4"></i>
            <i class="icon ion-ios-star icon-rating" ng-if="item.rate >= 5"></i>
        </div>                        
    </div>
</div>

我找到了一个更好的解决方案来完全解决这个需求:

https://github.com/fraserxu/ionic-rating