gpt4 book ai didi

javascript - 使用 For 循环、If 语句和 ng-repeat 显示数组项(json)

转载 作者:行者123 更新时间:2023-12-02 13:55:06 25 4
gpt4 key购买 nike

我正在尝试过滤两个 JSON 数组对象,以便显示数组中选定的结果。我使用两个 For 循环和一个 If 语句来过滤出需要显示的内容。

但是我的问题是 If 语句似乎没有过滤掉 For 循环的结果。 JSON 对象中的每个项目都会显示。请帮忙。

Angular/javascript

      var url = generateQuery('GET', '/products', CONFIG, params);
$scope.result = "";
var i;
var j;
$scope.items = [];
$http.get(url)
.success(function(data, status, headers, config) {
$scope.result = data;

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

for (j = 0; j < $scope.result.products[i].categories.length; j++) {
$scope.category_limit = $scope.result.products[i].categories[j];

if ($scope.category_limit = 'Jewellery') {

$scope.items.push({
image: $scope.result.products[i].featured_src,
name: $scope.result.products[i].title,
price: '$' + $scope.result.products[i].price + ' (R' + ($scope.result.products[i].price * $scope.convert.results.rate.Rate).toFixed(2) + ')',
id: $scope.result.products[i].id,
cat: $scope.category_limit
});
$ionicLoading.hide();

} else {
$ionicLoading.hide();
}
}

}

})

html

        <div class="category-col" ng-repeat="i in items" id="swap_row_col">

<a ng-href="#/app/products/{{i.id}}" href="#/app/products/{{i.id}}" class="no-underline">
<img src= {{i.image}} class="category-image-col">
<!--<img src='images/add_to_cart.png' style="height: 24px; width: 28px; z-index: 5; position: fixed; margin-left: 34%; margin-top: -13%;"> -->
<div class="category-name-col"> {{i.name}} </div>
<div class="category-price-col"> {{i.price}} </div>
<div class="category-price-col"> {{i.cat}} </div>
</a>

</div>

最佳答案

我认为你错过了 == 符号 if ($scope.category_limit == '珠宝'){……}

关于javascript - 使用 For 循环、If 语句和 ng-repeat 显示数组项(json),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40749973/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com