如何让/ users / new显示在/ static / index上

时间:2010-06-17 00:29:09

标签: ruby-on-rails

我有两个控制器:UsersStaticStatic/index是我的根索引页。

我希望Users/new表单显示在我的索引页面上。

所有表单都有效,不知道如何在Users上加入Static/index表单。

1 个答案:

答案 0 :(得分:2)

这样的东西
# static controller
def index
   # your stuff ...
   @user = User.new
end

def create
   # your stuff ...
   @user.create(params[:user])   
end

# static's index view
# your stuff ...
<% form_for @user do |f| %>
   <%= f.label :name, 'Name' %>:
   <%= f.text_field :name %>
   # more fields
<% end %>