我有一个表格:
%form{:action:method => "post"}
%fieldset
%label{:for => "title"} Title:
%input{:name => "title", :type => "text", :value => ""}/
%label{:for => "notes"} Notes:
%input{:name => "notes", :type => "text", :value => ""}/
%a.finish{:href => "/rotas", :method => "post"} Finish!
但是,该链接似乎不想工作 - 也许我在 Haml 或 Rails 中缺少一些基本的东西。
我的 routes.rb 中有一个 :resource rotas,我的控制器有一个 def create 方法。
任何帮助表示赞赏!谢谢!
顺便提一句。我使用脚手架生成 - 似乎相同的表单用于编辑模型和创建。它如何知道是进行 POST 还是 PUT?