鉴于:
- 一个动作
FooController
_bar
custom
扩展的 ActionView 模板处理程序- 一个模板在
app/views/foo/bar.custom
有没有办法让 Rails 只为 HTML 请求呈现该模板而不将模板重命名为bar.html.custom
?
鉴于:
FooController
_bar
custom
扩展的 ActionView 模板处理程序app/views/foo/bar.custom
有没有办法让 Rails 只为 HTML 请求呈现该模板而不将模板重命名为bar.html.custom
?
我想出了如何使用自定义来做到这一点ActionView::Responder
。请参阅https://github.com/netzpirat/haml_coffee_assets/issues/80了解为什么需要这样做以及我如何解决它的详细信息。