0
從下拉菜單中觸發對每個按鍵的錯誤選擇項目後:origItem.toUpperCase is not a function
,看http://plnkr.co/edit/xxTfWMcK3CuRPuiRldcB?p=preview的UI對象源選擇
我的UI選擇元素:
<ui-select multiple tagging tagging-label="(custom 'new' label)" ng-model="project.tags" theme="bootstrap" sortable="true" title="Tags">
<ui-select-match placeholder="Tags">{{$item.name || $item}}</ui-select-match>
<ui-select-choices repeat="tag in tags | filter:$select.search">
{{tag.name || tag}}
</ui-select-choices>
</ui-select>
其中tags
是
$scope.tags = [
{
name: 'foo'
},
{
name: 'bar'
}
]
我沒有發現任何關於使用一個對象作爲下拉菜單的源代碼 - 但似乎我做錯了。