0
我在我的模型中有一個字符串數組,我想爲每個字符串創建一個文本輸入並使用Twitter Bootstrap將它們綁定到數組鍵入他們。這是我曾嘗試:用ng-repeat爲字符串數組中的每個值創建一個輸入
<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;
});
現在的投入渲染,但他們沒有工作。有任何想法嗎?
通過「不工作」你的意思是鍵入不工作? – 2013-02-16 12:52:56
typeahead的作品,但當我改變它的價值,它不會更新模型 – 2013-02-16 13:04:16