我正在创建一个包含多个选择选项的表单,这些选项应该从数据库查询中填充。下拉列表的每组选项都来自不同的查询。我可以获得1次下拉工作。
我很想知道是否有最佳实践方法可以通过多个下拉菜单/查询完成此操作。
将多个查询合并到一个数组中会更好吗?有没有办法从我的控制器访问个人退货?
getInfo();
function getInfo(){
// Sending request to EmpDetails.php files
$http.post('databaseFiles/options.php').success(function(result){
// Stored the returned data into scope
$scope.options = result;
console.log(result);
});
}
<select class="form-control" ng-model="selectedDepartment"
ng-options="option.id as option.department for option in options ">
<option value="">Select Department</option>
</select>