我正在关注 Ruby on Rails 教程,当我尝试加载注册页面时遇到了这个错误:
显示 C:/Sites/rails_projects/sample_app/app/views/users/new.html.erb 其中第 6 行引发:表单中的第一个参数不能包含 nil 或为空
<div class="row">
<div class="span6 offset3">
<%= form_for (@user) do |f| %> *this is the line 6 it's referring to*
<%= render 'shared/error_messages' %>
<%= f.label :name %>
<%= f.text_field :name %>