我还没有看到这方面的任何文件..
如果我有
<%= best_in_place @user, :city, type=> :input, %>
我需要包括 data-provide="typeahead"
<%= best_in_place @user, :city, type=> :input,:data => {:provide => "typeahead"} %>
并包括来源
<%= best_in_place @user, :city, :type=> :input, :data => {:provide => "typeahead", :source => City.getcities.to_json} %>
假设City.getcities.to_json
返回带有城市名称的正确 json 列表
这行不通...