永続的なデータのニーズのために ngStorage を使用して配列を保存したいと考えています。これが私のコードです:
.factory("items", function () {
var items = {};
items.data = [];
return items;
})
.controller('ItemsController', function($scope,items) {
$scope.items = items;
$scope.addItem = function (id,item,size,price,quantity) {
items.data.push({id,item,size,price,quantity});
}
})
items 配列を ngStorage に保存する必要があります