我有一个跟踪调度呼叫的 Rails 3.2.22 应用程序,每个呼叫属于一个区域,而一个区域有很多呼叫。 在我的视图中,我最初有来自所有区域的所有调用,但现在我在视图中使用简单的form_tag按区域进行筛选,并将区域 ID 作为参数传递给控制器并返回到视图。
因此,如果我在本地点击呼叫索引视图,我将触发一个网址,例如:
http://loopify.xyz:9001/calls?utf8=%E2%9C%93®ion=1
然后在我看来,这将向我显示区域 ID 为"1"的所有呼叫。我可以切换到视图中的不同区域,它将按区域显示正确过滤的调用。
当我将其部署到我的临时服务器时,参数过滤根本不起作用并显示所有调用,即使当我选择一个区域时,我会得到一个 URL,如下所示:
http://staging.example.com/calls?utf8=%E2%9C%93®ion=1
这是我的调用控制器的索引操作:
def index
if params[:region].present?
@region = params[:region]
@assigned = Call.includes(:units, :transferred_from, :transferred_to, :nature, :region, :service_level).where(region_id: params[:region]).assigned_calls.until_end_of_day
@unassigned = Call.includes(:units, :transferred_from, :transferred_to, :nature, :region, :service_level).where(region_id: params[:region]).unassigned_calls.until_end_of_day
else
params[:region] = "1"
@assigned = Call.includes(:units, :transferred_from, :transferred_to, :nature, :region, :service_level).where(region_id: params[:region]).assigned_calls.until_end_of_day
@unassigned = Call.includes(:units, :transferred_from, :transferred_to, :nature, :region, :service_level).where(region_id: params[:region]).unassigned_calls.until_end_of_day
end
@note = Note.new
@units = Unit.active.order("unit_name").map{|unit| unit.calls.where(call_status: "open").empty? ? ["#{unit.unit_name} #{unit.unit_type.unit_type} #{unit.status.unit_status}", unit.id] : ["#{unit.unit_name} (on call) #{unit.unit_type.unit_type} #{unit.status.unit_status}", unit.id] }
end
这是我的index.html.erb视图:
<div id="active">
<%= render "assigned_calls" %>
</div>
<div id="inactive">
<%= render "unassigned_calls" %>
</div>
<script>
$(function() {
setInterval(function(){
$.getScript('/calls/?region=<%= params[:region] %>')
}, 20000);
});
</script>
这是允许 ajax 刷新和 JS 的 index.js.erb 文件
$("#active").html("<%= escape_javascript render("assigned_calls") %>");
$("#inactive").html("<%= escape_javascript render("unassigned_calls") %>");
以下是分配的部分的摘录。 已分配和未分配都非常大,可以在此处完整显示,但如果您需要更多上下文,我们很乐意在 github 要点中提供它们。
<div class="page-header well">
<h3><%= pluralize(@assigned.size, "Active Call") %></h3>
</div>
<%= form_tag calls_path, :method => 'get' do %>
<%= select_tag "region", options_from_collection_for_select(Region.order(:area), :id, :area, selected: @region), prompt: "Choose Region" %>
<%= submit_tag "Select", :name => nil, :class => 'btn' %>
<% end %>
<% @assigned.each_with_index do |call, index| %>
<div class="widget">
<div class="widget-header">
<div class="pull-right">
<%= link_to 'View', call, :class => 'btn btn-primary btn-small'%>
<% if dispatch? || admin? || manager? || operations? %>
<%= link_to 'Edit', edit_call_path(call), :class => 'btn btn-info btn-small'%>
<%= link_to "Close", '#close-modal', data: {toggle: "modal", target: "#close-modal#{index}" }, class: 'btn btn-small btn-warning' %>
<%= render 'layouts/close_call_modal', call: call, index: index %>
<%= link_to "Cancel", '#cancel-modal', data: {toggle: "modal", target: "#cancel-modal#{index}" }, class: 'btn btn-small btn-danger' %>
<%= render 'layouts/cancel_call_modal', call: call, index: index %>
<%= link_to "Notes", '#note-modal', data: {toggle: "modal", target: "#note-modal#{index}" }, class: 'btn btn-small btn-primary' %>
<%= render 'layouts/note_modal', call: call, index: index %>
<% end %>
</div>
<i class="icon-phone"></i>
<h3><%= link_to call.incident_number, call %> <span><%= status(call) %></span></h3>
<% if call.wait_return == "yes" && call.parent_call_id == nil %>
<i class="icon-arrow-right dim"></i> <span class="badge badge-important" >Initial Transport</span>
<% end %>
<% if call.wait_return == "yes" && call.parent_call_id.present? %>
<i class="icon-arrow-left dim"></i> <span class="badge badge-important" >Return Transport</span>
<% end %>
<% if call.traffic_type == "Emergency" %>
<span class="badge badge-important"><%= call.traffic_type %></span>
<% else %>
<span class="badge badge-info"><%= call.traffic_type %></span>
<% end %>
<span class="badge badge-primary" ><%= call.region.try(:area) %></span>
<span class="badge badge-info" ><%= call.service_level.try(:level_of_service) %></span>
</div>
<% end %>
我真的不确定这里有什么问题。 在开发中,我使用Thin提供应用程序,在分期中,我使用乘客和nginx。
我的代码中是否有某些内容在我缺少的生产环境中不起作用?
回顾一下,区域筛选在开发中完美运行,但一旦部署到暂存,过滤就不起作用。
我深入研究了日志,这是来自开发(本地)和生产(暂存)日志的请求:
开发:
Started GET "/calls/?region=1&_=1468278029235" for 127.0.0.1 at 2016-07-11 18:00:29 -0500
Processing by CallsController#index as JS
刺:
Started GET "/calls/?region=1&_=1468278074295" for 192.168.130.1 at 2016-07-11 18:01:14 -0500
Processing by CallsController#index as JS
我不确定为什么会发生这种情况/有效,但它确实如此。 如果我将 production.rb 中的日志级别从信息转到调试参数过滤工作正常。 我在一个旧的github问题上看到了对此的引用。 Rails 核心将其作为一个非错误关闭,但显然这有一些东西。 不幸的是,不再支持3.2,因此必须执行此"黑客"。 现在是时候将应用程序升级到 4.2.6 了。