我一直试图让form_tag在haml中运行。但是,如果没有错误,例如意外和未定义的错误,我无法正常工作。因此,我想知道我应该为rails 3做些什么显着不同。
= form_tag url: complete_diagnostic_path(@diagnostic), html: {method: :put} do |f|
答案 0 :(得分:1)
如果您查看form_tag
的文档,则不需要url:
或html:
。只是使用
= form_tag complete_diagnostic_path(@diagnostic), method: :put do
应该适合你。