Md-select问题

时间:2016-12-20 13:25:09

标签: angularjs mongodb angular-material

我在角度中使用md-selec t来选择类别名称。但是,当我填充类别时,我想将mongdb集合的_Id设置为另一个变量,我可以这样做吗?

来自mongoDB的

集合:

categories {
 "name": "Test",
 "_id": "uytsdf66fsfsdf234324234"
}

AngularJS:

  <md-input-container flex>
        <md-select ng-model="vm.categories" multiple>
           <md-option ng-repeat="category in vm.categorires" value="{{category}}">
      {{category.name}}
    </md-option>
  </md-select>
</md-input-container>

0 个答案:

没有答案