我想用devise gem来做用户注册模块。我按照官方设计网站上的说明进行操作。我将电子邮件字段名称更改为"联系"。我对注册模块的测试现在收到错误:
NoMethodError at /users undefined method `email` for #<User:0x007f64aa0033c0>
user.rb:
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
end
视图/设计/注册/ new.html.erb:
<div class="field">
<%= f.label :contact %>
<div class="ui action input">
<%= f.email_field :contact, class: "verification-contact", require: true %>
<a class="ui button verification-button">Get Code</a>
</div>
</div>