在您遇到的几乎所有应用程序中,您都需要编辑objects
。
在我的情况下,我有一个objects
列表,您可以在其中编辑它们,然后即时编辑它们。 (棱角分明的魔力)然而,这有副作用,例如以下控制器:
app.controller('editCategoryInstant', ['$http', '$scope', '$state', '$modalInstance', 'api', '$filter', 'category', 'LRM', function ($http, $scope, $state, $modalInstance, api, $filter, category, LRM) {
$scope.LRM = LRM;
$scope.category = category;
$scope.ok = function () {
$scope.category.color = $('#color').val();
category = $scope.category;
if ($scope.category .icon != null) {
$http({
url: api.getUrl('category', category.id),
method: "PUT",
data: {category: $scope.category}
}).success(function (data, status, headers, config) {
}).error(function (data, status, headers, config) {
var i = 0;
});
$modalInstance.dismiss('cancel');
}
else {
alert('Vælg ikon');
}
};
$scope.cancel = function () {
$scope.category = $scope.master;
$modalInstance.dismiss('cancel');
};
$scope.clickUpload = function () {
setTimeout(function () {
angular.element('#fileUpload').trigger('click');
}, 0);
};
}]);
好的,所以我会为你剪掉它。
为此,我希望编辑一个如下所示的现有对象:
var category = {
name: 'My Category',
icon: 'fa fa-bomb',
color: '#FFF',
description: 'This describes the category'
};
现在我将category
变量传递给controller
控制器绑定到modal
视图,如下所示:
<div class="modal-header">
<h3 class="modal-title" translate="STRUCTURE.CATEGORY.CREATE"></h3>
</div>
<form role="form" class="form-validation" ng-submit="ok()">
<div class="modal-body">
<div class="row">
<div class="col-xs-12">
<label class="control-label">{{'TERMS.NAME' | translate}}</label>
<input type="text" placeholder="{{'TERMS.NAME' | translate}}" class="form-control"
ng-model="category.name" required>
</div>
<div class="col-xs-6" style="margin-top: 10px;">
<label>{{'LIBRARY.CATEGORY.SELECTICON' | translate}}</label>
<lb-icon-picker targetvariable="category"></lb-icon-picker>
</div>
<div class="col-xs-6" style="margin-top: 10px;">
<label class="block">{{'LIBRARY.CATEGORY.SELECTCOLOR' | translate}}</label>
<lb-color-picker targetvariable="category"></lb-color-picker>
</div>
<div class="col-xs-12" style="margin-top: 5px;">
<textarea class="form-control" style="height: 150px" placeholder="{{'TERMS.DESCRIPTION' | translate}}" ng-model="category.description"></textarea>
</div>
</div>
</div>
<div class="modal-footer">
<a class="btn btn-grey" ng-click="cancel()" tooltip="{{ 'TOOLTIP.CANCEL' | translate }}"><i
class="fa fa-ban"></i></a>
<button type="submit" class="btn btn-success" tooltip="{{ 'TOOLTIP.SAVE_AND_EXIT' | translate }}"><i
class="fa fa-check-square-o"></i></button>
</div>
</form>
现在我开始编辑对象,但由于two way data binding
原始对象也发生了变化。因此,如果我cancel
更改,object
仍会看起来好像已被更改。
为此,我尝试查找$apply
和copy
但是我无法看到在此示例中如何实现此功能。
在上述情况下,谁能告诉我什么是最好的实践?你们怎么处理这些事情?
答案 0 :(得分:1)
如果您想编辑副本,可以使用:
$scope.category = angular.copy(category);
然后,当您确认了服务器更新后,您可以使用更新的副本扩展原始文件:
angular.extend( category, $scope.category);