ボタンのクリックに基づいて動的な行を作成しようとしています。行にはドロップダウンボックスがあります。問題は、新しい行を追加して新しい行にオプションを選択すると、前の行で選択したオプションも変更されていることです。前の行オプションは正しくバインドされていません。AngularJS:複数のドロップダウンでng-modelが機能しない
私のHTMLコード:
<div id="features" ng-controller="featuresCtrl">
<br>
<div class="row">
<div class="form-group col-md-6">
<table cellpadding="15" cellspacing="10">
<thead>
<tr>
<th style="text-align: center;">Feature</th>
<th style="text-align: center;">Type</th>
<th style="text-align: center;">Value</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr></tr>
<tr ng-repeat="r in rows">
<td>
<select ng-model="r.data.model" ng-options="option.name for option in data.availableOptions"
ng-change="getValues(r.data.model.name)">
<option value="">Select Feature</option>
</select>
</td>
<td>
<select ng-model="r.updateData.model" ng-options="option.name for option in updateData.availableOptions"
ng-change="getBinSet(r.updateData.model.name)">
<option value="">Select Type</option>
</select>
</td>
<td>
<select ng-model="r.binData.model" ng-options="option.name for option in binData.availableOptions">
<option value="">Select Value</option>
</select>
</td>
<td ng-if="showAdd">
<div class="text-center">
<button ng-click="addRow()">Add</button>
</div>
</td>
<td ng-if="showAdd">
<div class="text-center">
<button ng-click="remove($index)">Remove</button>
</div>
</td>
</tr>
<tr>
<td></td>
<td style="align-self: center;">
<button style="align-self: center" ng-click="submitForm(rows)">Submit</button>
</td>
<td></td>
</tr>
</tbody>
</table>
<br>
</div>
マイ角度JSコード:
'use strict';
var testControllers = angular.module('testControllers');
testControllers.controller('featuresCtrl', ['$scope','$route','$filter', '$http', '$location','$window','$timeout', 'NgTableParams',
function($scope, $route, $filter, $http, $location, $window, $timeout, NgTableParams) {
$scope.rows = [{}];
$scope.nrows = [];
$scope.showAdd = false;
$scope.addRow = function() {
$scope.rows.push({
});
};
$scope.remove = function(index) {
$scope.rows.splice(index, 1);
};
$scope.submitForm = function(rows) {
console.log("rows", rows);
};
$scope.data = {
model: null,
availableOptions: [
{ name: 'TestA'},
{ name: 'TestB'},
{ name: 'TestC'},
{ name: 'TestD'}
]
};
$scope.getValues = function (featureType) {
console.log("getValues", featureType);
$scope.showAdd = false;
if (featureType != null) {
$http.get('/getPropensityValues.do', {params: {'featureType': featureType}}).success(function (data) {
var test = [];
angular.forEach(data, function (item) {
test.push({name: item});
});
$scope.updateData = {
model: null,
availableOptions : test
};
});
}
};
$scope.getBinSet = function (featureType) {
console.log("getBinSet", featureType);
$scope.showAdd = true;
if (featureType != null) {
$scope.binData = {
model: null,
availableOptions: [
{name: '1'},
{name: '2'},
{name: '3'},
{name: '4'},
{name: '5'},
{name: '6_10'},
{name: '10_15'},
{name: '16_20'},
{name: '21_25'},
{name: '26_30'},
{name: '31_35'},
{name: '36_40'},
{name: '41_45'},
{name: '46_50'},
{name: '>50'}
]
};
}
};
}]);
いくつかのいずれかは、私がここで間違ってやっているものを私に伝えることができますか?別の例を試しました - https://plnkr.co/edit/Jw5RkU3mLuGBpqKsq7RH?p=preview ここでも私は同じ問題に直面しています。 r.data.modelを使用して各行の値をバインドするのは間違っていますか?あなたは(サイドノートをオプションメニューを再定義したとき
https://plnkr.co/edit/4sJHHaJPEuYiaHjdnFBp?p=preview
あなたはモデルが何であったかを定義されませんでした:あなたは内underscore.jsのdifference機能を活用する必要があり、私は仕事にあなたのplunkerを更新
まだ結合していません。私が新しい行のオプションを追加して選択すると、最初の行も変更されます。 – user3407267
私のコードで間違っていることを教えていただけますか?私のプランカは私の試行のうちの1つでした。私がそれを働かせようとしているコードは質問の中にあります – user3407267
申し訳ありません私はあなたが本当にそれをoverthinkingだと思うので、元のはるかに簡単ですより多くの新しいplunkrを作った。 https://plnkr.co/edit/4sJHHaJPEuYiaHjdnFBp?p=preview – Chris