我在我的视图中显示查询结果,此查询使用两个不同的表,对于数据搜索,我使用ransack gem执行搜索,但它在搜索表单中显示以下错误:
ActionView::Template::Error (undefined method `Producto_cont' for Ransack::Search<class: Stoc, base: Grouping <combinator: and>>:Ransack::Search):
该领域&#34;产品&#34;我从另一个名为&#34; productos&#34;的表中得到它。并且它是查询的结果,它只显示我在查询中与我所关联的另一个字段的错误,而不是我从它的方法调用的字段的错误#34;#34 ; STOC&#34;
这是我的方法控制器:
@search = Stoc.productos_de_un_stock(params).search(search_params)
@search.sorts = 'Stock desc' if @search.sorts.empty?
@stock = @search.result().page(params[:stock]).per(15)
这是我的疑问:
def self.productos_de_un_stock(params)
query = select("[stock].IdStock, [stock].Stock, [productos].Clave AS Clave_producto, [productos].Producto, [productosxpzas].PzaXCja AS PzaXCja")
.joins('inner join productos ON stock.Articulo = productos.Clave inner join productosxpzas ON productos.Clave = productosxpzas.Producto')
.where('stock.Ruta = ? AND stock.IdEmpresa = ?', (params[:search]), (params[:search6]))
query
end
这是我的搜索表单:
<%= search_form_for @search, :remote=>"true", url: busqueda_stock_path, :method => :get do |f| %>
<div class="rwd">
<table class="table table-striped table-bordered table-condensed table-hover rwd_auto">
<thead>
<tr>
<th class="component_name_header_col"><%= sort_link @search, :Articulo, "Clave","stoc", {}, { :remote => true, :method => :get } %></th>
<th class="action_col"><%= t("basic.action") %></th>
</tr>
<tr>
<th><%= f.text_field :Articulo_cont, class:"campo" %></th>
<%= f.search_field :Producto_cont %>
<input id="search" type="hidden" value="<%=params[:search] %>" name="search"/>
<input id="search6" type="hidden" value="<%=params[:search6] %>" name="search6"/>
<th><%= f.submit "Buscar" %></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<% end %>
答案 0 :(得分:0)
首先,按照惯例,尝试将列命名为大写。
我们需要表格和模型的结构来提供更好的答案,所以请尝试将它们添加到问题中。
但我会尝试给你一些案例,以便你可以解决问题
如果您尝试使用has_many关系,您将首先以复数形式调用该关系,然后调用该模型的列,例如,如果用户有很多项目并且我们想要按项目名称搜索,那么会是这样的
<%= f.search_field :projects_name_cont %>
如果用户属于某个机构,我们将使用单数,然后到模型的列,就像这样
<%= f.search_field :institution_name_cont %>
如果我们尝试使用相同用户模型中的列,那么它将直接
<%= f.search_field :name_cont %>
它将直接转到用户模型中的name列。希望这有助于您理解