使用haml在rails 3中使用form标记的正确语法

时间:2015-04-16 16:13:20

标签: ruby-on-rails haml

我一直试图让form_tag在haml中运行。但是,如果没有错误,例如意外和未定义的错误,我无法正常工作。因此,我想知道我应该为rails 3做些什么显着不同。

= form_tag url: complete_diagnostic_path(@diagnostic), html: {method: :put} do |f|

1 个答案:

答案 0 :(得分:1)

如果您查看form_tag的文档,则不需要url:html:。只是使用

= form_tag complete_diagnostic_path(@diagnostic), method: :put do

应该适合你。