我有一个名为“Notes”的控制器,其相关模型是Note,带有一个名为“note”的文本字段(我知道)。
我在new.html.erb视图中有一个非常简单的表单:
<% form_for(@note) do |f| %>
<p><%= f.error_messages %> </p>
<h2 class="productList"><label for="">Note: </label>
<%= f.text_area :note, :cols => "50", :rows => "10" %></h2>
<br />
<p><%= f.submit "Create" %></p>
<% end %>
但是,单击“提交”按钮后,被调用的动作来自完全不同的控制器:
Processing OtherController#add_note (for 127.0.0.1 at 2012-07-30 09:04:42) [POST]
请注意,尽管将控制器设置为资源,但在routes.rb中甚至没有定义此操作。
routes.rb中的“notes”行如下所示:
map.resources :notes, :collection => { :note_list => :get, :get_json_list => :get }, :member => { :applications => :get, :replace => :get }
“rake routes”会为控制器生成这些行:
get_json_list_notes GET /notes/get_json_list(.:format) {:controller=>"notes", :action=>"get_json_list"}
note_list_notes GET /notes/note_list(.:format) {:controller=>"notes", :action=>"note_list"}
notes GET /notes(.:format) {:controller=>"notes", :action=>"index"}
POST /notes(.:format) {:controller=>"notes", :action=>"create"}
new_note GET /notes/new(.:format) {:controller=>"notes", :action=>"new"}
edit_note GET /notes/:id/edit(.:format) {:controller=>"notes", :action=>"edit"}
replace_note GET /notes/:id/replace(.:format) {:controller=>"notes", :action=>"replace"}
applications_note GET /notes/:id/applications(.:format) {:controller=>"notes", :action=>"applications"}
note GET /notes/:id(.:format) {:controller=>"notes", :action=>"show"}
PUT /notes/:id(.:format) {:controller=>"notes", :action=>"update"}
DELETE /notes/:id(.:format) {:controller=>"notes", :action=>"destroy"}
我的Javascript中没有与表单或控件绑定的任何内容。什么会让它调用错误的控制器和动作?
UPDATE - 这是form_for标记的输出:
<form id="new_note" class="new_note" method="post" action="/notes">
<p> </p>
<h2 class="productList">
<label for="">Note: </label>
<textarea id="note_text" rows="10" name="note_text" cols="50"></textarea>
</h2>
<br>
<p>
<input id="note_submit" type="submit" value="Create" name="commit">
</p>
</form>
更新2 - 表格正在通过“Note.new”
答案 0 :(得分:0)