繁体   English   中英

Rails:检测用户代理是否在开发中工作但不在生产中?

[英]Rails: Detecting user agent works in development but not production?

我试图在我的应用程序中检测Blackberry用户代理,这在我的开发版本中工作正常。 但是,当我在生产中重新部署应用程序时,没有任何反应。

application_helper.rb

  def blackberry_user_agent?
    request.env["HTTP_USER_AGENT"] && request.env["HTTP_USER_AGENT"][/(Blackberry)/]
  end

application.html.erb

<% if blackberry_user_agent? -%>
<div class="message">
<p>Using a Blackberry? <a href="http://mobile.site.ca/">Use the mobile optimized version</a>.</p>
</div>

我已经尝试使用rake tmp:cache清除缓存:清除并重启mongrel几次。 显然,HTTP_USER_AGENT在生产中回归为零。 我正在使用Nginx和一个mongrel集群。

尝试:

request.user_agent

你在你的杂种前面使用Apache或nginx吗?

你是否记录了user_agent? 这是我的nginx.conf:

log_format main '$remote_addr - $remote_user [$time_local] $request '
                  '"$status" $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "http_x_forwarded_for"';

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM