我正在使用移动 fu gem 进行一些用户代理检测,以便我可以根据客户端提供 .html 或 .mobile 扩展模板,
现在,这部分工作得非常好,但我不喜欢视图文件夹变得有点混乱,有两倍的文件,即。
app/views/profiles/show.mobile.haml
app/views/profiles/show.html.haml
app/views/profiles/edit.mobile.haml
app/views/profiles/edit.html.haml
等等等等
我想要的是:
app/views/profiles/html/show.html.haml
app/views/profiles/html/edit.html.haml
和
app/views/profiles/mobile/show.mobile.haml
app/views/profiles/mobile/edit.mobile.haml
并让 Rails 根据请求自动查找文件的正确文件夹/目录。 这可能吗?
也许这真的很容易做到,让我知道这是否是开箱即用的行为..
谢谢