如何从Angularjs的更新记录中的下拉列表中获取选定的值?

问题描述 投票:0回答:1

我用来自json的angular js填充了我的下拉列表。但是选择无法进行更新,我无法获得选择的值。如何选择下拉列表中的所选项目?

//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;        
};
<select ng-model="Branch_Type">
   <option value="{{field.BranchTypeId}}" ng-selected="true"
           ng-repeat="field in BrancheTypes | orderBy:'BranchTypeId'">
     {{field.BranchTypeName}}
   </option>
</select>

这是调试时的值

enter image description here

“”

angularjs angular-ngmodel selected
1个回答
0
投票

尝试将您的html更改为此

<select ng-model="selectedDevice" 
        ng-options="field.BranchTypeId as field.BranchTypeName for field in BrancheTypes | orderBy:'BranchTypeId'">
    <option></option>
</select>
© www.soinside.com 2019 - 2024. All rights reserved.