options下拉数据默认值的设定方法

本篇文章主要介绍了Angular中ng-options下拉数据默认值的设定方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

今天学习了一下Angular中ng-options下拉数据默认值的设定方法,留个笔记

直接上代码

<div> <label>教师</label> <div> <select ng-model="editCourse.TeacherName" ng-options="Teacher.UserName for Teacher in TeacherList" required> <option value="">选择教师</option> </select> </div> </div>

AngularJS

//data为课程的编号ID $scope.Edit = function (data) { //通过课程ID获取课程对象 CourseService.getByCourseID(data).then(function (result) { $scope.editCourse = result.data; //默认值设定 //先通过课程里面的教师ID获取教师对象 CourseService.GetTeacherByTeacherID(result.data.TeacherID).then(function (result) { //$scope.TeacherList为所有教师的列表 for (i = 0; i < $scope.TeacherList.length; i++) { //如果当前课程教师的ID与当前遍历到的教师的ID相等的话就把当前遍历到的这个教师的对象给到 ng-model="editCourse.TeacherName" if (result.data.UserID == $scope.TeacherList[i].UserID) { $scope.editCourse.TeacherName = $scope.TeacherList[i]; } } }); angular.element("#edit").modal({ show: true }) }) }

演示

options下拉数据默认值的设定方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyfpsp.html