使用AngularJS,AngularFire和Firebase作为新用户,我遇到了分布式代码库的问题。我试图经常使用Factory()来重用代码并遵循测试的最佳实践。但是,我在向AngularFire对象和Firebase添加数据时遇到了问题。
鉴于以下工厂:
angular.module('MyApp').factory("ItemData", ["$firebaseObject", "$firebaseArray", "GetFireBaseObject",
function($firebaseObject, $firebaseArray, GetFireBaseObject) {
var ItemsRef = GetFireBaseObject.DataURL('Items/');
return {
AllItems: function() {
return $firebaseArray(ItemsRef);
},
OneItem: function(ItemKey) {
var OneItemRef = ItemsRef.child(ItemKey);
return $firebaseObject(OneItemRef);
}
};
}
]);
我可以获取我的项目,我可以处理数据等...但是,我似乎无法向对象添加元素,并将其添加到Firebase。当我调用AddQuantity / MinusQuantity时,屏幕会更新数量,但我无法将此数据与Firebase链接并更新那里的记录。
angular.module('MyApp').controller('InventoryCtrl', ["$scope", "StoreData", "ItemData"
function ($scope, StoreData, ItemData) {
$scope.StoreList = StoresData.AllStores();
$scope.SelectedStore = {}; // Store Information
$scope.ItemList = {}; // Store Item List
$scope.GetItemsForStore = function() {
// StoreDate.OneStoreItems returns list of items in this store
var ItemData = StoreItems.OneStoreItems($scope.SelectedStore.Key); // $firebaseArray() returned
for( var i = 0; i < ItemData.length; ++i)
{
var Item = ItemData[i];
// Item Data is master item data (description, base price, ...)
var OneItem = ItemsData.OneItem(Item.$id); // Get Master by Key
Item.Description = OneItem.Description; // From Master
Item.UnitPrice = OneItem.UnitPrice;
Item.Quantity = 0;
Item.UnitTotal = 0;
}
$scope.ItemList = ItemData;
};
$scope.AddQuantity = function(item) {
if( ! item.Quantity ) {
item.Quantity = 0;
}
++item.Quantity;
};
$scope.MinusQuantity = function(item) {
if( ! item.Quantity ) {
item.Quantity = 0;
}
--item.Quantity;
if(item.Quantity <= 0) {
item.Quantity = 0;
}
};
}
]);
来自HTML的片段
<pre>{{ ItemList | json}}</pre>
<div>
<table class="table">
<thead>
<th>Product Code</th>
<th>Description</th>
<th>Qty</th>
<th> </th>
<th> </th>
<th>Extended</th>
</thead>
<tbody>
<tr ng-repeat="(Key, item) in ItemList">
<td>{{item.$id}}</td>
<td>{{item.Description}}</td>
<td>{{item.Quantity}}</td>
<td><button class="btn btn-success" ng-click="AddQuantity(item)">+</button></td>
<td><button class="btn btn-danger" ng-click="MinusQuantity(item)">-</button></td>
<td>{{item.UnitPrice | SLS_Currency}}</td>
<td>{{item.UnitTotal}}</td>
</tr>
</tbody>
</table>
</div>
我可以在元素中看到添加到ItemList对象的Quantity字段,但即使我传递了&#39;项目&#39; ng-repeat中带有按钮的元素,这似乎是正确的参考,我没有看到数据同步到Firebase。
答案 0 :(得分:2)
我将工厂改为服务,我相信这仍然可以通过工厂完成,但我必须添加AngularFire手册中的绑定功能,如图所示。下面是代码的一个子集,用于选择记录并进行添加。
angular.module('MyApp').service("ItemData", ["$firebaseObject", "$firebaseArray", "GetFireBaseObject",
function($firebaseObject, $firebaseArray, GetFireBaseObject) {
var ItemRef = GetFireBaseObject.DataURL('Items/');
this.AddItem = function(Item) {
var OneItemRef = ItemRef.child(Item.Key);
OneItemRef.update(Item);
return $firebaseObject(OneItemRef);
};
this.DeleteItem = function(ItemKey) {
var OneItemRef = ItemRef.child(ItemKey);
OneItemRef.remove();
};
this.GetAllItems = function() {
return $firebaseArray(ItemRef);
};
this.GetOneItem = function(ItemKey) {
var OneItemRef = ItemRef.child(ItemKey);
return $firebaseObject(OneItemRef);
};
}
]);
然后控制器必须进行添加绑定,这也可以在服务中完成:
angular.module('MyApp').controller('ItemCtrl', ["$scope", "ItemData",
function ($scope, ItemData) {
$scope.Items = ItemData.GetAllItems();
$scope.EditItem = function(Item) {
var EditItem = ItemData.GetOneItem(Item.Key);
// Bind here for real time updates - NOTE: Changes with each key
EditItem.$bindTo($scope, "Item").then(
function(unbind) {
$scope.ItemUnbind = unbind;
}
);
$scope.Item.NewField = "ABC"; // Add extra field to Firebase
};
$scope.SaveItem = function(Item) {
if( ! $scope.ItemEditMode )
{
$scope.Item = ItemData.AddItem(Item);
}
};
}
]);
但是,通过此更改,任何更改(例如每次按键)都会立即同步到Firebase数据中。