gpt4 book ai didi

javascript - 分配 JSON 数据时,不是 angularjs 中的数组错误

转载 作者:行者123 更新时间:2023-11-28 18:26:51 24 4
gpt4 key购买 nike

这是我的 JSON 数据格式。

{
"0": {
"id": "1",
"image": "/images/brands/surf_excel.png",
"name": "Surf Excel",
"productCount": "6"
},
"1": {
"id": "2",
"image": "/images/brands/rin.png",
"name": "Rin",
"productCount": "5"
},
"2": {
"id": "3",
"image": "/images/brands/ariel.png",
"name": "Ariel",
"productCount": "4"
}
}

当我尝试像这样分配这些数据时..

$scope.Brands = [];
$scope.Brands = data; // Not an array error

基本上我想分配数据并一一访问。

如何修复这个错误?

最佳答案

您可以为此使用循环

  angular.forEach(data,function(value,key){
$scope.Brands.push(value);
})

关于javascript - 分配 JSON 数据时,不是 angularjs 中的数组错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38939156/

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