如何在Angularjs中从更新记录的Dropdownlist中获取所选值?

如何在Angularjs中从更新记录的Dropdownlist中获取所选值?,angularjs,angular-ngmodel,selected,Angularjs,Angular Ngmodel,Selected,我用json中的angular js填充了我的dropdownlist。但选择不适用于更新,我无法获取所选值。如何选择dropdownlist所选项目 //get single record by ID $scope.getForUpdate = function (Branch) { debugger var getData = myService.getBrancheTypes(); getData.then(function (response) {

我用json中的angular js填充了我的dropdownlist。但选择不适用于更新,我无法获取所选值。如何选择dropdownlist所选项目

//get single record by ID
$scope.getForUpdate = function (Branch) {
    debugger        
    var getData = myService.getBrancheTypes();
    getData.then(function (response) {
        debugger
        $scope.BrancheTypes = response.data;            
    }, function (error) {
        console.log(error);
        toastr.error("Error in getting records.");
    });
    debugger
    $scope.Branch_ID = Branch.Branch_ID;
    $scope.Branch_Name = Branch.Branch_Name;
    $scope.Branch_Address = Branch.Branch_Address;
    $scope.Branch_email = Branch.Branch_email;
    $scope.Branch_Notes = Branch.Branch_Notes;
    $scope.Branch_TimeFrom = new Date(moment(Branch.Branch_TimeFrom));
    $scope.Branch_TimeTo = new Date(moment(Branch.Branch_TimeTo));
    $scope.Branch_CreatedDate = new Date(moment(Branch.Branch_CreatedDate));
    $scope.Branch_Manager = Branch.Branch_Manager;
    $scope.Branch_TypeId = Branch.Branch_TypeId; // Branch.Branch_TypeId = 1
    $scope.Branch_Type = $scope.BrancheTypes[Branch.Branch_Type]; // Object {BranchTypeId: 1, BranchTypeName: "Head Office", Branches: null}     
    $scope.Branch_Phone = Branch.Branch_Phone;
    $scope.Branch_Fax = Branch.Branch_Fax;
    $scope.saturday = Branch.saturday;
    $scope.sunday = Branch.sunday;
    $scope.monday = Branch.monday;
    $scope.tuesday = Branch.tuesday;
    $scope.wednesday = Branch.wednesday;
    $scope.thursday = Branch.thursday;
    $scope.friday = Branch.friday;        
};

{{field.BranchTypeName}
这是调试时的值


尝试将您的html更改为

<select ng-model="selectedDevice" 
        ng-options="field.BranchTypeId as field.BranchTypeName for field in BrancheTypes | orderBy:'BranchTypeId'">
    <option></option>
</select>