我在角度中使用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>