私はng-repeatを使って動的フォームを作成しています。私は自分の場所を読み込むためにoi-selectライブラリを使用しています。 oi-selectボックスには複数の選択機能があります。デフォルトで私のページの読み込み時に、そのoi-selectボックスに最初のオプション値をロードしています。ng-init値は、角度選択オプションでオーバーライドされました
しかし、最初のオプション以外のオプションを選択した場合は、その値で上書きされます。この問題のために、最初のオプションをもう一度選択する必要があります。私の質問は、どのように私は最初のオプション値をデフォルトでそのoi-selectにロードできますか?その後
、私は他のオプションを選択していた場合、それは選択ボックスで私の最初の値を上書きしません.Hereは私plunkerリンクですhttp://plnkr.co/edit/m6Q02dlHLBCMVLRLfioh?p=preview
私のHTMLコード
<body class="container row">
<div ng-app="myApp">
<div ng-controller="myCtrl">
<form role="form" name='userForm' novalidate>
<div class="container">
<div class="row" ng-repeat="user in users">
<div class="form-group">
<div class="col-md-3">
<label>ID</label>
<input ng-model="user.id" id="user.id" name="user.id" placeholder="Enter bugid" type="text" required readonly disabled>
</div>
<div class="col-md-3">
<label>Comments</label>
<textarea ng-model="user.comment" id="textarea1" rows="1" required></textarea>
</div>
<div class="col-md-3 ">
<label>Location</label>
<oi-select ng-model="user.location" multiple oi-options="v for v in locations" ng-init='initLocation(user)' name="select2" required>
</oi-select>
</div>
</div>
</div>
</div>
<div class="buttonContainer text-center btn-container">
<br>
<button ng-disabled="userForm.$invalid" type="button" id="adduser" ng-click="adduser()">Add user</button>
<button type="button" class="btn button--default btn--small pull-center">Close</button>
</div>
</form>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" type="text/css" />
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
</div>
</div>
私のJSコード
var app = angular.module('myApp', ['ngResource', 'oi.select']);
app.controller('myCtrl', function($scope, $timeout) {
$scope.ids = [1, 2, 3];
$scope.users = $scope.ids.map(function(id) {
return {
id: id,
comment: "",
location: ""
};
});
$scope.locations = ['india', 'usa', 'jermany', 'china', 'Dubai'];
$scope.initLocation = (user) => {
$timeout(() => {
user.location = $scope.locations[0];
});
}
$scope.adduser = function() {
var data = $scope.users.map(function(user) {
return {
"userid": user.id,
"manualcomment": user.comment,
"location": user.location
}
});
console.log("data", data)
}
});
は、あなたが問題を解決することができましたか? –
場所が静的なデータの場合は正常に動作しています。しかし、私の新しい要件として、私はこのフォームをモーダルポップアップの中にロードしています。私の位置の値はAPIコールから来ます。のみ私のモーダルポップアップボタンをクリックしている場合、最初の位置データはデフォルトで選択ボックス内にロードされず、ng-init()メソッドは機能しません。しかし、私はもう一度クリックポップアップボタンが正常に動作している場合。最初に、最初の位置値が読み込まれませんでした。私はここに私のプランカのリンクを添付しています。私を助けてください.https://plnkr.co/edit/xDVetaZIzpFdKLS9ihU6?p = preview – user3760261