我在 Rails 中的联系表格中收到此错误:
First argument in form cannot contain nil or be empty
看法:
<%= form_for @contact do |f| %>
and so on.......
控制器
def new
@contact = Contact.new
end
and so on....
我发现了相关的错误,但似乎没有一个解决方案适合我的特定问题。任何可能导致这种情况的线索?