我在共享/用户下的部分 HAML 中有一个相当简单的 Rails 远程表单:
- remote_form_for :user, :url => { :controller => "users", :action => "create" } do |f|
.field
= f.label :name, t('name')
= f.text_field :name
.field
= f.label :email, t('email')
= f.text_field :email
.actions
= f.submit
无论我如何摆弄它,这都是行不通的。我总是收到以下错误:
undefined method `remote_form_for' for #<#<Class:0x1036e8e40>:0x1036dfd90>
我在做傻事吗?它与 form_for 完美配合。