0
我正在使用ng-duallist模板。我在這裏得到:https://github.com/tushariscoolster/ng-duallist在Angularjs中使用的模板
我想在同一個html控制器中使用兩次。我爲它創建了新的變量,但內容總是相同的,所以我怎樣才能將它分開?
我正在使用ng-duallist模板。我在這裏得到:https://github.com/tushariscoolster/ng-duallist在Angularjs中使用的模板
我想在同一個html控制器中使用兩次。我爲它創建了新的變量,但內容總是相同的,所以我怎樣才能將它分開?
我想VM2添加到其他數據內容,但總是相同的值增加了兩個duallist
var existingEntries = [];
var vm = this;
vm.property = 'controller';
activate();
function activate() {
vm.leftValue = [];
vm.rightValue = [];
vm.addValue = [];
vm.removeValue = [];
function loadMoreLeft() {
for (var i = 0; i < $scope.reasonOfLack.length; i++) {
vm.leftValue.push({
'name': $scope.reasonOfLack[i]
});
}
};
function loadMoreRight() {
}
vm.options = {
leftContainerScrollEnd: function() {
},
rightContainerScrollEnd: function() {
},
leftContainerSearch: function (text) {
console.log(text)
vm.leftValue = $filter('filter')(leftValue, {
'name': text
})
},
rightContainerSearch: function (text) {
vm.rightValue = $filter('filter')(rightValue, {
'name': text
})
},
leftContainerLabel: 'Uygunsuzluk Sebepleri',
rightContainerLabel: 'Seçilen Uyunsuzluk Sebepleri',
onMoveRight: function() {
console.log('right');
console.log(vm.addValue);
},
onMoveLeft: function() {
console.log('left');
console.log(vm.removeValue);
}
};
loadMoreLeft();
var leftValue = angular.copy(vm.leftValue)
var rightValue = angular.copy(vm.rightValue)
}
沒有代碼,沒有遊戲:) – AranS
我只是添加代碼塊 –