Rails3 jquery 自动完成不同值
是否可以使用 Rails3 JQuery 自动完成 gem 选择不同的值?
Is it possible to select DISTINCT values using Rails3 JQuery autocomplete gem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用范围更好更简单。
在您的模型中:
在您的控制器中:
此解决方案允许轻松应用更复杂的过滤:
model:
controller:
来源
It is much better and simpler to use scopes.
In your model:
In your controller:
This solution allows more complex filtering to be easily applied:
model:
controller:
source
似乎不是 - 但是 - “自动完成”宏实际上只是在控制器中定义一个操作。我会放弃在控制器中使用“自动完成”,而自己实施该操作......
祝你好运。
Doesn't appear to - but - the 'autocomplete' macro is really just defining an action in your controller. I'd forego using 'autocomplete' in my controller and just implement the action myself...
Good luck.
我试试这个:
I try this:
其他答案均不适用于 MongoID。
我混合使用许多答案来做到这一点:
这不使用关系。制造商和型号是产品型号上的字符串字段。
谢谢大家的解答。
None of other answers works with MongoID.
I use a mix of many answers to do this:
This does not use relations. The manufacturer and model are string field on Product model.
Thanks you all for answers.
Postgresql:
Postgresql: