suchen

Heim  >  Fragen und Antworten  >  Hauptteil

angular.js - angular 的ng-option的一些参数option.id as option.title 这里面的as是

如下这段代码,as是什么意思?

ng-options="option.id as option.title for option in curOptionArray"
给我你的怀抱给我你的怀抱2745 Tage vor624

Antworte allen(4)Ich werde antworten

  • 大家讲道理

    大家讲道理2017-05-15 17:04:25

    option.id表示选择的,
    option.title表示显示的,
    as就是这个作用

    Antwort
    0
  • 伊谢尔伦

    伊谢尔伦2017-05-15 17:04:25

    可以理解成一个ng的语法 option.id是select提交的值 option.title是select显示的值 option代表数组curOptionArray里面的当前元素

    Antwort
    0
  • 迷茫

    迷茫2017-05-15 17:04:25

    可参考官网:
    https://docs.angularjs.org/api/ng/directive/ngOptions#!

    其中有一个例子:

    $scope.items = [{
      id: 1,
      label: 'aLabel',
      subItem: { name: 'aSubItem' }
    }, {
      id: 2,
      label: 'bLabel',
      subItem: { name: 'bSubItem' }
    }];
    
    <select ng-options="item as item.label for item in items track by item.id" ng-model="selected"></select>

    Antwort
    0
  • PHPz

    PHPz2017-05-15 17:04:25

    可以看看这里Hacking with Angular: 玩转ngOptions指令

    Antwort
    0
  • StornierenAntwort