0
我正在嘗試顯示特定產品的付款清單。所以,如果我以2000美元的價格購買了產品,我可以設置每月100美元的付款,我想試着跟蹤付款是否成功。按年份和月份排序和分組數據
我有一個嵌套的ng重複。第一次重複顯示產品列表以及關聯的ID。例如:
Bed frame | ID: po8j3mau72
Television | ID: hyf53ygt65
Fridge | ID: gytf87hg5d
第二個重複顯示每月支付的金額。
我想要什麼,試圖展現的是這樣的:
Bedframe:
Jan Feb Mar Apr May Jun.....
2016 Y Y Y N Y N
2015 Y N
...
...
Television:
Jan Feb Mar Apr May Jun.....
2016 Y N Y N Y N
2015 Y Y Y Y Y Y
...
...
其中Y = contentHistory.paid =真 其中N = contentHistory.paid =假
日期應該從一月排序日 - 12月,每年格式上傳.json收到的是PAYMENTDATE 「:」 2016-03-28T00:00:00.000Z」,
HTML:
<ul>
<li ng-repeat-start="item in myItem.items">
{{item.addressLine1}} | ID: {{item._id}}
</li>
<li ng-repeat-end>
<div ng-repeat="info in contents[item._id].contentHistory">
{{info.amount}}
</div>
</li>
</ul>
控制器:
app.controller('MainCtrl', function($scope, myService) {
$scope.test = 'hello';
myService.getItemModel(function(itemModel) {
$scope.myItem = itemModel;
$scope.contents = {};
var itemList = itemModel.items;
itemList.forEach(function(item) {
var addressId = item._id;
myService.getContentModel(addressId)
.success(function (data, status, headers, config) {
$scope.contents[addressId] = data;
console.log(arguments);
console.log($scope.contents);
})
.error(function (data, status, headers, config) {
});
});
});
});
服務:
app.factory('myService', function($http, $q) {
return {
getItemModel: function(itemModel) {
$http.get('itemID.json')
.success(function(data) {
itemModel(data);
})
.error(function(error) {
alert('An error occured whilst trying to retrieve your item data');
});
},
getContentModel: function(addressId) {
return $http({
method: 'GET',
url: addressId + '.json',
headers: {'Content-Type': 'application/json'}
});
}
}
});
Plunker:https://plnkr.co/edit/KIMScMfUdgCdOKksVyAs
做這項工作? –
是的,謝謝 –