モデルに文字列の配列があります。それぞれのテキスト入力を作成し、Twitter Bootstrap の先行入力を使用して配列にバインドしたいと思います。これが私が試したことです:
<div class="control-group inline" ng-repeat="offer in userinfoadd.offers">
<label class="control-label" for="offer">Offer </label>
<div class="controls">
<input type="text" bs-typeahead="typeahead" value="{{offer}}">
</div>
</div>
これが私のコントローラーのコードです:
$scope.userinfoadd = {
offers: ['one','two','three','four','five']
};
//get the typeahead
$http.get('data/activities.json').success(function(data) { //TODO: Stub, replace for an API call!
$scope.typeahead = data;
});
入力がレンダリングされるようになりましたが、機能しません。何か案は?