前提・実現したいこと
Postmanにパラメータを渡してJSON形式データのやりとりを実験したいです。
次のようなパラメータをpostしました
{ "user_name":"abc", "email":"abc@exsample.com", "password":"rhcp21", "password_confirmation":"rhcp21" }
コントローラはこんな感じです
users_contoroller.rb
ruby
1class UsersController < ApplicationController 2 def create 3 @user = User.new(user_params) 4 User.new(@users) 5 6 if @user.save 7 render json: { status: 'success', data: @user } 8 else 9 render json: { status: 'error!', data: @user.errors } 10 end 11 end 12 private 13 def user_params 14 params.require(:user).permit(:user_name,:email,:password,:password_confirmation) 15 end 16end
###モデルはこんな感じです
ruby
1class User < ApplicationRecord 2 has_secure_password 3end
発生している問題・エラーメッセージ
Started POST "/create/" for ::1 at 2019-10-29 15:28:23 +0900 (3.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC ↳ /Users/ts21/.rbenv/versions/2.6.4/lib/ruby/gems/2.6.0/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb:98 Processing by UsersController#create as */* Parameters: {"user_name"=>"abc", "email"=>"abc@exsample.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "user"=>{"email"=>"abc@exsample.com", "user_name"=>"abc"}} (1.3ms) BEGIN ↳ app/controllers/users_controller.rb:25 (1.0ms) ROLLBACK ↳ app/controllers/users_controller.rb:25 Completed 200 OK in 68ms (Views: 0.4ms | ActiveRecord: 29.9ms)
postman上には {"status":"error!","data":{"password":["can't be blank"]}}と表示されました。
コントローラの書き方の問題だと思います。
どなたかご教授いただければ幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/29 08:44