recherche

Maison  >  Questions et réponses  >  le corps du texte

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

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

ng-options="option.id as option.title for option in curOptionArray"
给我你的怀抱给我你的怀抱2745 Il y a quelques jours626

répondre à tous(4)je répondrai

  • 大家讲道理

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

    option.id signifie sélectionné,
    option.title signifie affiché,
    tout comme cette fonction

    répondre
    0
  • 伊谢尔伦

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

    peut être compris comme une syntaxe ng option.id est la valeur soumise par select option.title est la valeur affichée par select option représente l'élément actuel dans le tableau curOptionArray

    répondre
    0
  • 迷茫

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

    Veuillez vous référer au site officiel :
    https://docs.angularjs.org/api/ng/directive/ngOptions#!

    Un exemple :

    $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>

    répondre
    0
  • PHPz

    PHPz2017-05-15 17:04:25

    Vous pouvez consulter Hacking with Angular : Playing with the ngOptions directive

    répondre
    0
  • Annulerrépondre