我一定是做错了。我的选择框没有选择任何选项。我错过了什么,或者我是否需要以某种方式更改数据?
HTML:
<select ng-options="item._id as item.title for item in articles" ng-model="article.related" multiple></select>
文章看起来像:
[
{
_id: 328749832743aeeaa28434a87,
title: 'Some title'
},
...
]
article.related看起来像:
[
28749832743aeeaa28434a87,
328749832743aeeaa28434a88,
...
]