我目前正在使用带有angularjs的JSON。我创建了一些JSON虚拟变量。我有一个for循环,我想显示100项(我随机设置了一些数据)。 我知道我在做什么,但我只是不知道如何展示它们。帮助将不胜感激
我收到了代码here。这就是我试图展示它们的方式
<div ng-repeat=" item in tempData">
{{item.selectedOwner}}
</div>
答案 0 :(得分:1)
首先,你应该在你的问题上投入更多精力。 其次,你有很多语法错误,没有声明任何角度模块,任何角度控制器,也没有添加角度。
这是一个解决方案(在此plunker中),为您提供有关ng-repeat的一些解释:
//To make the value accessible in the view you need to declare it in the controller scope.
$scope.tempData = [];
//You push all you test data in it.
$scope.tempData.push({
id: i,
owner: selectedOwner.text,
modifiedDate: someDate.getDate(i),
receiptDate: someDate.getDate(i),
claimType: selectedClaimType.text,
amount: i * 99,
status: selectedStatus.text,
customerName: selectedCustomer.text,
})
用于显示集合:
<div ng-repeat="data in tempData">{{data.owner}} - {{data.customerName}} - {{data.claimType}}</div>
希望它有所帮助。