我正在尝试在Rails中创建一个登录系统,但是,当我进入注册页面时,我收到一条错误说:"未定义的方法`first_name'为#"。我检查了我的用户数据库中的" first_name"列,并发现"用户"中的唯一列table是" id"," created_at"," updated_at"。我使用rails new appname -d mysql创建了我的应用程序,我有mysql2 gem,我已经更新了我的databases.yml文件,我已经运行了" rake db:migrate"。但是,没有任何作用。我怎样才能解决这个问题?这是我的用户控制器:
class UsersController < ApplicationController
def new
@user = User.new
end
def create
@user = User.new(user_params)
if @user.save
session[:user_id] = @user.id
redirect_to '/login'
else
redirect_to '/signup'
end
end
private
def user_params
params.require(:user).permit(:first_name, :last_name, :email, :password)
end
end
这是我的路由器:
Rails.application.routes.draw do
root 'main#index'
get '/login' => 'sessions#new'
get '/signup' => 'users#new'
resources :users
post 'login' => 'sessions#create'
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end
这是我的模特:
class User < ApplicationRecord
has_secure_password
end
这是我的迁移文件:
class CreateUsers < ActiveRecord::Migration[5.0]
def change
create_table :users do |t|
t.string :first_name
t.string :last_name
t.string :email
t.string :password_digest
t.timestamps
end
end
end
以下是我的观点:
<div class="login">
<div class="container">
<div class="form">
<h1>Sign up</h1>
<%= form_for(@user) do |f| %>
<%= f.text_field :first_name, :placeholder => "First name" %>
<%= f.text_field :last_name, :placeholder => "Last name" %>
<%= f.email_field :email, :placeholder => "Email" %>
<%= f.password_field :password, :placeholder => "Password" %>
<%= f.submit "Create an account", class: "btn-submit" %>
<% end %>
</div>
</div>
</div>
我在Ubuntu 16.04上使用Rails 5.0.2
答案 0 :(得分:0)
您可能希望尝试使用db:migrate:redo重做迁移,如果不起作用,请创建添加相应列的新迁移。
var lightboxOnResize = (function () {
});
$(document).ready(lightboxOnResize);