我正在使用UI引导程序,我正在使用typeahead指令。我添加了placeholder
属性以在输入之前显示一些文本。
我的控制器返回一个JSON列表,这是相关的文本框:
<input type="text"
ng-model="selected"
placeholder="Data loaded via $http"
typeahead="users as (users.first + ' ' + users.last + ' ' + users.gender) for users in getData($viewValue)"
class="form-control">
问题:当我加载页面时,文本框显示2个空白字符而不是占位符。
答案 0 :(得分:0)
即使在typehead属性中有空格,我也能解决问题。问题在于您使用的角度和引导程序的版本。我更新了plnkr。请在下面找到更新的plnkr:
Updated plnkr: http://plnkr.co/edit/mBSWeE?p=preview