我正在使用 angular bootstrap typeahed。
有可能在输入中显示不完整的单词,例如https://twitter.github.io/typeahead.js/examples/?
我尝试在 ui.bootstrap-typeahed 中执行此操作,但我只输入了字符。我使用 $http 请求来获取数据元素。
感谢您的任何想法。
我正在使用 angular bootstrap typeahed。
有可能在输入中显示不完整的单词,例如https://twitter.github.io/typeahead.js/examples/?
我尝试在 ui.bootstrap-typeahed 中执行此操作,但我只输入了字符。我使用 $http 请求来获取数据元素。
感谢您的任何想法。
在typeahead 文档中找到了答案。Typeahead 使用模糊时选择的或自动完成的值填充输入。为避免这种情况,$('#selector').typeahead('val', '<contents>')
应使用$('#selector').val('<contents>')
.