5

我已经按照以下链接解决了这个问题,但它没有用: 如何使用 AngularJS 获取选项文本值?

我有一个包含一组服务器的下拉列表。当我从下拉列表中选择一个值时,我希望所选值显示在单独的 div 中。这是我所做的:

选择控制:

 <select name="source" class="form-control input-sm"
                        ng-model="filterOptions.hostId"
                        ng-options="s.id as s.hostName for s in physicalServerList"
                        ng-style="{'width':'100%'}">
                </select>

显示选定的文本:

<span class="pull-left">Source: {{ filterOptions.hostId.hostName }}</span>

但是,这不会显示选定的文本。我究竟做错了什么?

4

2 回答 2

7

它不显示所选文本,因为您的模型将具有所选项目的 id,因为在 ng-options 中使用了s.id as s.hostName( )。select as label syntax只需select as从语法中删除部分,让 ng-model 保存所选对象的引用本身,而不仅仅是 id。

所以你的 ng 选项: -

ng-model="filterOptions.host"
ng-options="s.hostName for s in physicalServerList track by s.id"

并且您的模型将是所选对象,而不仅仅是所选项目的 id

<span class="pull-left">Source: {{ filterOptions.host.hostName }}</span>

PLNKR

于 2014-09-21T15:58:56.450 回答
4

试试这个功能:

var hostApp = angular.module('hostApp', []);
    hostApp.controller('hostController', function($scope) {
    
      $scope.options = [
          { value: '1', label:'hosting1' },
          { value: '2', label:'hosting2' },
          { value: '3', label:'hosting3' }
      ];
        
      $scope.hostSelected = $scope.options[0];
    });
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>

<div ng-app="hostApp">
    <div ng-controller="hostController">
        <select ng-model="hostSelected"
                ng-options="opt as opt.label for opt in options">
            </select>
        <div>value: {{ hostSelected.value }} <br />label: {{ hostSelected.label }}</div>
    </div>
</div>

于 2015-02-19T16:23:01.810 回答