我尝试使用' content_for'将我的注册表单插入到布局文件中但我有一些困难。目标是在文件中包含表单,但我希望它被隐藏。然后我将使用JQuery在单击时生成表单slideDown()。
我已经咨询过以下内容,但我无法解决问题:
How can I use content_for to put something in :yield
http://railscasts.com/episodes/8-layouts-and-content-for
我要插入布局的表单(Users / new.html.erb):
array
在application.html.erb中,我在body标签中有以下代码段:
<% content_for :login do %>
<%= form_for @user do |f| %>
# Rest of the form below
.
.
.
<% end %>
<% end %>
非常感谢任何帮助,谢谢!