次のようにAngularJSとUI Bootstraptypeahead
を使用してセットアップしようとしています:
.html
<input type="text" ng-model="selectedStuff" typeahead="stuff.name for stuff in stuffs | filter:$viewValue"/>
<span>{{selectedStuff.name}}</span>
<span>{{selectedStuff.desc}}</span>
.js
$scope.stuffs= [
{
"name":"thing1",
"desc":"this is the first thing"
},
{
"name":"thing2",
"desc":"this is the second thing"
}
]
現在、選択した名前でモデルを更新できましたが、私の目標は、オブジェクト全体をtypeahead
. 入力のみを使用してこれを行うクリーンな方法はありますか?