SimpleForm :: Components :: Typeahead - 预加载与服务器端?

时间:2013-11-23 13:22:51

标签: ruby-on-rails simple-form bootstrap-typeahead typeahead.js

您有没有办法通过远程调用服务器来使用它?目前我有完美的工作,但只有预加载的数据,例如

typeahead: User.all.pluck(:email)

在某些时候可能会因为很多结果而变得有点麻烦,不是吗?

1 个答案:

答案 0 :(得分:0)

是。使用remote

以下是文档:https://github.com/twitter/typeahead.js#remote

以最简单的形式,这可能是这样的:

$('#input').typeahead([{
    remote: 'https://twitter.com/accounts?q=%QUERY'
}]);

...但请务必阅读文档,特别是重新阅读。 filter