- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在ApplicationController中使用以下代码(取自here)来检测iPhone,iPod Touch和iPad请求:
before_filter :detect_mobile_request, :detect_tablet_request
protected
def detect_mobile_request
request.format = :mobile if mobile_request?
end
def mobile_request?
#request.subdomains.first == 'm'
request.user_agent =~ /iPhone/ || request.user_agent =~ /iPod/
end
def detect_tablet_request
request.format = :tablet if tablet_request?
end
def tablet_request?
#request.subdomains.first == 't'
request.user_agent =~ /iPad/
end
before_filter
,模板的加载实际上都需要自动进行。
最佳答案
Possible Duplicate of Changing view formats in rails 3.1 (delivering mobile html formats, fallback on normal html)
但是,我在这个完全相同的问题上苦苦挣扎,并提出了一个非常优雅的解决方案,完全可以满足我的需求。这是我从其他帖子中得到的答案。
我想我已经找到了最好的方法。我尝试过与您相同的事情,但是后来我想起在Rails 3.1中引入了template inheritance,这正是我们需要类似的东西才能起作用的原因。对于此实现,我真的不能称赞,因为Ryan Bates在railscasts链接中列出了所有实现。
因此,这基本上就是它的运行方式。
在app/views
中创建一个子目录。我标记了我的mobile
。
将要覆盖的所有 View 模板嵌套在与Views目录中相同的结构格式中。 views/posts/index.html.erb -> views/mobile/posts/index.html.erb
在您的before_filter
中创建一个Application_Controller
并为此做些事情。
before_filter :prep_mobile
def is_mobile?
request.user_agent =~ /Mobile|webOS|iPhone/
end
def prep_mobile
prepend_view_path "app/views/mobile" if is_mobile?
end
关于ruby-on-rails - 移动mime类型可以在Rails中退回到 “html”吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4062518/
以下代码使用堆: char* getResult(int length) { char* result = new char[length]; // Fill result...
目前我们正在使用 Mandrill 发送电子邮件,每当 Mandrill 检测到退回邮件时,我们都会获得原始 header 以及退回邮件或发送电子邮件的子帐户。 在 Amazon SES 中,我们通过
我遇到了 nopCommerce 中特定客户要求带来的问题。 我有一个页面 - 比方说 page1 - 它显示了一个 block 图像,然后你必须点击它才能到达页面的主要部分(无论我多么努力劝阻他们不
大多数移动浏览器都有默认行为,允许用户在到达页面顶部或底部时继续滚动,并在页面顶部或底部留出空白。然后整个页面将弹回以填充空白区域。在原生的 iOS 应用中,我们可以很方便地为这些顶部和底部区域设置图
我有一个触发 lambda 方法的 api 网关。我试图到达终点,但返回了 500,InternalServerErrorException。但是,lambda 从未被调用。 登录aws控制台时,我在
我是一名优秀的程序员,十分优秀!