使用ngModel ngRepeat,ngOptions选择默认值

时间:2017-10-31 20:38:50

标签: angularjs select angularjs-ng-repeat angular-ngmodel angularjs-ng-options

希望有人可以提供帮助。

我正在使用HTML AngularJs开发一个应用程序,它使用ng-repeat,ng-options和ng-model,并根据数据库中的数据为用户填充多行。每行都有来自DB的静态数据(通过restAPI作为对象返回)和用于用户选择的动态选择选项。选择选项在app.js中进行硬编码,并在使用更新按钮选择时链接到HTML上的模型以进行数据库更新。每行都有自己的按钮,我可以看到更新功能正在行级。

我想将下拉列表的默认值动态设置为来自数据库的元素的值。对象与用于使用静态数据填充行的对象相同。

代码是https://jsfiddle.net/6j88L61y/4/

的小提琴

HTML下面

<body>
<h1 align="center">User Tracker</h1>
<div ng-controller="MainController as main">
<div>
<p>Please Enter ID </p>
<p>
<input type="text" ng-model="main.model.userName"></input>
<button ng-click="main.model.getOrgList()">List State List</button>
</p>
</div>
<hr ng-show="main.model.formSubmitted"></hr>
<div>
<table class="table table-bordered" border="1">
<thead>
<tr>
<th>ID</th>
<th>User Name</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="org in main.model.orgList" id="{{org.id}}">
<td>{{org.id}}</td>
<td align="center">{{org.user}}</td>
<td align="center">
<select ng-model="main.model.selectedRecord.appCurrentStateSelected[$index]" ng-options="option.value  as option.value for option in main.model.appCurrentStateList" ></select>
</td>
<td>
<button ng-click="main.model.updateAppDetailsList({id:org.id,userName:org.name,appCrntState:main.model.selectedRecord.appCurrentStateSelected})">Update</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>

JS

"use strict";

angular.module('myApp',[]);

angular.module('myApp').service('AppModel', function( $http) {
this.userId='';
this.userName ="";
this.formSubmitted="";
this. selectedRecord ={appCurrentStateSelected:''};
this.appCurrentStateList =[{name: 'New',value:'New',id:1}, {name: 'InUse',value:'InUse',id:2},{name: 'Inactive',value:'Inactive',id:3},{name: 'Deleted',value:'Deleted',id:4}];     
this.submittedAppDetailsList=[];
console.log(' json sample:'+this.submittedAppDetailsList);  
var path = 'home';
var currentProtocol = location.protocol;
var host =location.host;
var apiHost = currentProtocol+'//'+host+'/api/';
console.log('API url is : ' +apiHost);

// Get method

this.getOrgList = function() {

var path = 'home/userid';
console.log(this.userName);
console.log(this.selectedRecord);   
$http.get(apiHost+path+'/'+this.userName+'/')
.then(function(response) {
this.orgList =response.data;
this.formSubmitted = true;      
console.log(response.data);
}.bind(this),
function(response) {
console.log(response.data);
});
}

// Post method

this.updateAppDetailsList = function(appdetailsList) {

var path = 'home/update';

console.log(this.selectedRecord);   
$http.post(apiHost+'home/update/',appdetailsList)
.then(function(response) {
this.submittedAppDetailsList.push(response.data);
this.formSubmitted = false;     
console.log(response.data);
}.bind(this),
function(response) {
console.log('Error : '+response.data);
});
}   

});


angular.module('myApp').controller('MainController', ['AppModel', function (AppModel) {

this.model = AppModel;


}]);

0 个答案:

没有答案
相关问题