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.
我有一个专门用于使用 jQuery 进行 DateTime 的表单构建器字段。我想做的是让助手能够通过 content_for 将内容推送到我的 <head> 中。有任何想法吗?
谢谢,斯特凡
您可以在 @template 实例变量上调用任何辅助方法。它保存当前的模板上下文。
class MyBuilder < ActionView::Helpers::FormBuilder def this_method_appends_content_for(content) @template.content_for(:head, content) end end