标签: angularjs
答案 0 :(得分:0)
您应该能够从ng-model值中获取所选项目。这样的事情应该这样做:
<select ng-model="thing" ng-options="thing.id as thing.name for thing in things track by thing.name">
这将为您提供thing对象作为ng-model值。
thing