1

通常大多数 IE 发送这个用户代理

Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8)

但是一些 IE 发送这个 Useragent

  Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; .NET4.0C; .NET4.0E; MS-RTC LM 8)

我有 2 个布局,application.html.haml 和 application.mobile.haml
因为第二个包括“Tablet PC 2.0”,Mobile-Fu 将格式设置为 :tablet,它不会在我的 rails 应用程序中呈现布局。

请帮助我解决此问题。谢谢!

4

1 回答 1

0

如果请求来自 IE 并且包括平板电脑,我暂时通过更改用户代理来修复,

class ApplicationController < ActionController::Base

  before_filter :change_user_agent_for_ie

  def change_user_agent_for_ie
    if request.env["HTTP_USER_AGENT"].include?("Tablet PC 2.0") && (request.env["HTTP_USER_AGENT"].include?("MSIE"))
      request.env["HTTP_USER_AGENT"] = "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8)"
    end
  end

不确定永久修复此问题的方法是什么。

于 2013-03-21T07:07:21.423 回答