ruby-on-rails - Ruby on Rails : After search, 列表未显示所有数据

标签 ruby-on-rails ruby postgresql model controller

我遇到了一个问题,我在允许用户在数据库中搜索项目的 Rails 应用程序中得到重复的搜索结果。

这是项目模型中的搜索功能:

def self.search(search_industry, search_role, search_techs_ids)

    _projects = Project.scoped 

    if search_industry.present?
      _projects = _projects.where ['industry LIKE ?', like(search_industry)]
    end
    if search_role.present?
      _projects = _projects.where ['role LIKE ?', like(search_role)]
    end
    if search_techs_ids.present?
    _projects = _projects.includes(:technols).where("technols.id" => search_techs_ids)
    end
    _projects
    end

这是我搜索页面的一部分

<div class="tech">
<%= fields_for(@project_technol) do |ab| %>
 Technologies : 
 <%     tech_ids = params[:technols][:id].reject(&:blank?) unless params[:technols].nil? %>

<%if params[:technols].nil?%>

<%= collection_select(:technols, :id, @all_technols, :id, :tech, {}, {:multiple => true} ) %>

<% else %>

<%= collection_select(:technols, :id, @all_technols, :id, :tech, {}, {:multiple => true, :selected => tech_ids } ) %>
<% end %>

</div>

这是我的搜索操作:

def search

    tech_ids = params[:technols][:id].reject(&:blank?) unless params[:technols].nil?

    @search =  params[:industry], params[:role], tech_ids

    @project_search = Project.search(*@search).order(sort_column + ' ' + sort_direction).paginated_for_index(per_page, page)

    @search_performed = !@search.reject! { |c| c.blank? }.empty? 

  @project = Project.new(params[:project])

    @all_technols = Technol.all

    @project_technol = @project.projecttechnols.build

respond_to do |format|
      format.html # search.html.erb
      format.json { render :json => @project }
    end

end

这个问题现在已经解决了,但在解决这个问题时,我注意到当我搜索一项技术时,正确的项目会出现在表格中,但在技术列中它是为了显示属于该技术的所有技术项目,但它只显示我搜索的项目:

<% @project_search.each do |t| %>
  <tr>
    <td><ul>
      <% t.technols.each do |technol| %>
        <li><%= technol.tech %><!/li>
      <% end %>
    </ul></td>

有什么想法吗?在我的模型中,我曾经使用这段代码来正确显示表格,但显示了重复的结果。

if search_techs_ids.present?
        _projects = _projects.joins(:technols).where("technols.id" => search_techs_ids)
        end

任何帮助都将不胜感激。提前致谢

解决方案查看下面的答案

@shioyama 和@tommasop 都帮助解决了这个问题。

解决方案是将列所在的搜索 View 更改为

<td><ul>
  <% t.technols(force_reload=true).each do |technol| %>
    <li><%= technol.tech %></li>

  <% end %>

</ul></td>

最佳答案

试试这个语法:

_projects.each { |p| p.technols(force_reload=true) }
_projects

reference here .

关于ruby-on-rails - Ruby on Rails : After search, 列表未显示所有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12817954/

相关文章:

postgresql - Postgis 几何边界上的两个最近点

ruby-on-rails - Ruby on Rails - 在任何源中都找不到 xpath-2.0.0

ruby-on-rails - Ruby - redirect_to 重定向到正确的页面,但不更改 URL

ruby - Homebrew 程序不再工作了。 "The i18n gem is not available"

ruby - 初学者 Ruby - 关于对象

sql - PostgreSQL BETWEEN 运算符表现不同

postgresql - 如何将 psql 变量传递给 PL/pgSQL 代码的 DECLARE 部分?

css - rails precompile assets 看到错误在哪个文件

ruby-on-rails - 给定时间戳,如何确定几周前?

ruby-on-rails - Capistrano 源代码中的 <<-CMD 是什么?