我的模型中有一个字符串数组,我想为每个字符串创建一个文本输入并将它们绑定到数组,使用 Twitter Bootstrap typeahead 和它们。这是我尝试过的:
<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;
});
现在输入渲染但它们不起作用。有任何想法吗?