ruby-on-rails – Rails gem rails3-jquery-autocomplete如何按用户范围

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails gem rails3-jquery-autocomplete如何按用户范围前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Rails gem rails3- jquery-autocomplete添加类别到帖子.

我想限制搜索在结果中仅包括属于当前用户或帖子作者的类别.

文档说我可以指定一个范围:

:scopes

Added option to use scopes. Pass scopes in an array. e.g :scopes =>
[:scope1,:scope2]

但我不知道我将如何传递用户ID?

看起来像一个comon的情景,我是否缺少一些明显的东西?

我发现一个建议修改get_item方法的答案,但这似乎打破了自动完成

Scoping the results for rails3 jquery autocomplete plugin

解决方法

在posts_controller中:
def get_autocomplete_items(parameters)
    items = super(parameters)
    items = items.where(:user_id => current_user.id)
  end

我首先调用原始的get_autocomplete_items方法,然后通过current_user.id过滤出结果.

这个问题有助于:
Rails 3: alias_method_chain still used?

原文链接:https://www.f2er.com/ruby/265743.html

猜你在找的Ruby相关文章