<ui-select ng-model="request.foo"
theme="bootstrap"
tagging-label="false"
tagging="addFoo">
<ui-select-match placeholder="--- Select foo---">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="foo in foos | filter: $select.search">
<div ng-bind-html="foo.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
嗨,我正在使用这个ui-select,效果很好!我正在使用标记,它也很好用,我只有一个问题,如果我输入内容然后通过单击鼠标转到另一个字段,标记不起作用,输入后我必须按下&# 34;输入&#34;插入新数据的关键。有没有办法解决这个问题?