我对angularjs比较新。我有一些代码(HTML + JS)允许用户添加和删除范围内数组中的条目。但是现在我正在大量重复不同数组的代码。我知道这可以重新考虑,但我不确定角度方法,除了我可能想要使用指令的事实。非常感谢任何帮助。
HTML
<div class="control-group" ng-class="{error: form.profile.seeking.$invalid}" ng-controller="SeekingCtrl">
<label class="control-label" for="profile.seeking">Seeking</label>
<div class="controls">
<ul ng-repeat="seeks in profile.seeking">
<li>{{seeks}} <button class="btn" ng-click="removeSeeks()">Remove</button></li>
</ul>
<input type="text" ng-model="newseeks" id="profile.seeking">
<button class="btn" ng-disabled="!newseeks" ng-click="addSeeks()">Add new</button>
</div>
<div class="control-group" ng-class="{error: form.project.offering.$invalid}" ng-controller="OfferingCtrl">
<label class="control-label" for="project.offering">Offering</label>
<div class="controls">
<ul ng-repeat="offer in project.offering">
<li>{{offer}} <button class="btn" ng-click="removeOffer()">Remove</button></li>
</ul>
<input type="text" ng-model="newoffer" id="project.offering">
<button class="btn" ng-disabled="!newoffer" ng-click="addOffer()">Add new</button>
</div>
Javascript
var SeekingCtrl = function($scope) {
$scope.addSeeks = function() {
$scope.profile.seeking = $scope.profile.seeking || [];
$scope.profile.seeking.push($scope.newseeks);
$scope.newseeks = "";
};
$scope.removeSeeks = function() {
$scope.profile.seeking = _.without($scope.profile.seeking, this.seeks);
};
};
var OfferingCtrl = function($scope) {
$scope.addOffer = function() {
$scope.project.offers = $scope.project.offers || [];
$scope.project.offers.push($scope.newoffer);
$scope.newoffer = "";
};
$scope.removeOffer = function() {
$scope.project.offers = _.without($scope.project.offers, this.offer);
};
};
答案 0 :(得分:8)
终于想通了。
HTML
<div list-editor list="profile.skills" label="Skills">
</div>
指令
<div class="control-group" ng-controller="ListEditorCtrl">
<label class="control-label" for="{{list}}">{{label}}</label>
<div class="controls">
<ul ng-repeat="item in list">
<li>{{item}}
<button class="btn" ng-click="removeItem()"><i class="icon-remove"></i></button>
<button class="btn" ng-show="!$first" ng-click="moveUpItem()"><i class="icon-chevron-up"></i></button>
<button class="btn" ng-show="!$last" ng-click="moveDownItem()"><i class="icon-chevron-down"></i></button>
</li>
</ul>
<input type="text" ng-model="newitem" id="{{list}}" />
<button class="btn" ng-disabled="!newitem" ng-click="addItem()">Add new</button>
</div>
p4pApp.directive('listEditor', function () {
return {
restrict: 'A',
scope: {
list: '='
},
templateUrl: '/templates/common/list_editor_directive.html',
link: function(scope, element, attrs) {
scope.label = attrs.label;
}
};
}
);
控制器
var ListEditorCtrl = function($scope) {
$scope.addItem = function() {
$scope.list = $scope.list || [];
$scope.list.push($scope.newitem);
$scope.newitem = "";
};
$scope.removeItem = function() {
$scope.list.splice(_.indexOf($scope.list, this.item),1);
};
};
答案 1 :(得分:0)
你的问题对我来说不够明确,如果你把plunker放在一个更容易理解的示例代码会更好,但我会尝试回答我的理解。<登记/> 在您的services.js文件中执行以下操作:
app.factory('Seeks', ['$http', function($http){
var Url = "seeks.json";
var Seeks = $http.get(Url).then(function(response){
return response.data;
});
return Seeks;
}]);
app.factory('Offers', ['$http', function($http){
var Url = "offers.json";
var Offers = $http.get(Url).then(function(response){
return response.data;
});
return Offers;
}]);
你的controllers.js中的做了这样的事情:
var SeekingCtrl = function($scope, Seeks) {
Seeks.then(function(data){
$scope.seeks = data;
});
$scope.addSeeks = function(newseeks) {
$scope.seeks.push(newseeks);
newseeks = "";
};
$scope.removeSeeks = function(seek) {
$scope.seeks = _.without($scope.seeks, seek);
};
};
var OfferingCtrl = function($scope, Offers) {
Offers.then(function(data){
$scope.offers = data;
});
$scope.addOffer = function(newoffer) {
$scope.offers.push(newoffer);
newoffer = "";
};
$scope.removeOffer = function(offer) {
$scope.offers = _.without($scope.offers, offer);
};
};
并且不要忘记将Offers
和Seeks
注入app.js文件中的控制器,如下所示:
SeekingCtrl.$inject = ['$scope', 'Seeks'];
OfferingCtrl.$inject = ['$scope', 'Offers'];
将所有内容放在一个控制器中,如下所示:
var MainCtrl = function($scope, Seeks, Offers) {
Seeks.then(function(data){
$scope.seeks = data;
});
Offers.then(function(data){
$scope.offers = data;
});
$scope.addSeeks = function(newseeks) {
$scope.seeks.push(newseeks);
newseeks = "";
};
$scope.addOffer = function(newoffer) {
$scope.offers.push(newoffer);
newoffer = "";
};
$scope.removeSeeks = function(seek) {
$scope.seeks = _.without($scope.seeks, seek);
};
$scope.removeOffer = function(offer) {
$scope.offers = _.without($scope.offers, offer);
};
};
var MainCtrl = function($scope, Seeks, Offers) {
Seeks.then(function(data){
$scope.seeks = data;
});
Offers.then(function(data){
$scope.offers = data;
});
$scope.add = function(item, type) {
$scope[type].push(item);
item = "";
};
$scope.remove = function(item, type) {
$scope[type] = _.without($scope[type], item);
};
};
类型可以是寻求或提供
对于我联盟中的服务。
希望这有帮助。