Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Rails 应用程序中,我使用 mobile-fu 插件来呈现移动视图。对于特定的控制器,我还需要在移动浏览器的 .html 视图中显示数据。如何切换特定控制器的桌面视图。
导轨版本 3.2.2
添加以下行以更改特定控制器中的格式
... before_filter :clear_mobile_format ... private def clear_mobile_format request.format = :html end