环境:带有设计的Rails 3.2.3
我想在注册表中添加一个注册码。注册码不在用户表中。有一个单独的registration_codes。它出现在注册表单中的原因是,我想将用户填写注册表单时输入的代码与注册表单中的代码进行比较,并生成一个将进入用户表的值。
我收到一条错误消息:
undefined method `registration_code' for #<User:0x007f91b57b7890>
它指向在views/registrations/new.html.erb中显示registration_code文本框的代码
如何解决registration_code 不属于users 表的事实?表单运行良好,直到我将registration_code 字段添加到表单中。