当我提交表单时,数据不会在帖子中发送并通过参数设置。我不能为我的生活找出原因。这个表单在plan / show动作中,这就是为什么你看到我在那里设置@action变量的原因。它是通过JS发送的。
的routes.rb
resources :plans do
resources :actions
end
action.rb
belongs_to :plan
plan.rb
has_many :actions
plans_controller.rb
def show
@plan = current_user.plans.includes(:actions).find(params[:id])
@action = Action.new
respond_to do |format|
format.html # show.html.erb
format.json { render json: @plan }
end
end
actions_controller.rb
before_filter :get_plan
def create
@action = @plan.actions.new(params[:action])
@action.user_id = current_user.id
@action.save
end
private
def get_plan
@plan = current_user.plans.find(params[:plan_id])
end
在views / actions文件夹中create.js.erb
$('div#actions').prepend("<%= escape_javascript(render @action) %>");
$('div#<%= dom_id(@action) %>').effect('highlight');
_form.html.erb partial
<%= form_for ([@plan, @action]), remote: true do |f| %>
<%= f.text_field :desc %>
<%= f.number_field :days %>
<%= f.submit %>
<% end %>
通过POST发送的参数(缺少动作哈希 - 为什么?)
Started POST "/plans/1/actions"
Parameters: {"utf8"=>"✓", "authenticity_token"=>"**removed**", "commit"=>"Create Action", "plan_id"=>"1"}
数据库架构
create_table "plans", :force => true do |t|
t.string "name"
t.integer "user_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
create_table "actions", :force => true do |t|
t.string "desc"
t.integer "plan_id"
t.integer "days"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
答案 0 :(得分:2)
动作是一个保留字。如果你把它叫做其他任何东西(控制器除外,它也是保留的)那么它就可以了。
http://guides.rubyonrails.org/action_controller_overview.html#routing-parameters
params散列将始终包含:controller和:action键,但您应该使用controller_name和action_name方法来访问这些值。