Nuxt.jsとRails APIを用いて開発をしております。
Rails APIを叩いてデータを取得することはできるのですが、データを作成・削除することができません。
なお、Postmanを使用した場合は問題なくできております。
何が原因かわかる方がおられましたらご教授いただけませんでしょうか?
Nuxt.jsの該当部分のコードは以下の通りです。
js
1<script> 2 methods: { 3 addUser() { 4 const data = { 5 name: 'Fred' 6 } 7 this.$axios.$post('/api/v1/users', JSON.stringify(data)) 8 }, 9 deleteItem(id) { 10 this.$axios.$delete(`/api/v1/users/${id}`) 11 } 12 } 13} 14</script>
またRailsのコントローラーは以下のようになっております。
rb
1module Api 2 module V1 3 class UsersController < ApplicationController 4 before_action :set_user, only: [:show, :update, :destroy] 5 6 def index 7 users = List.order(created_at: :desc) 8 render json: { status: 'SUCCESS', message: 'Loaded users', data: users } 9 end 10 11 def show 12 render json: { status: 'SUCCESS', message: 'Loaded the user', data: @user } 13 end 14 15 def create 16 user = List.new(user_params) 17 if user.save 18 render json: { status: 'SUCCESS', data: user } 19 else 20 render json: { status: 'ERROR', data: user.errors } 21 end 22 end 23 24 def destroy 25 @user.destroy 26 render json: { status: 'SUCCESS', message: 'Deleted the user', data: @user } 27 end 28 29 def update 30 if @user.update(user_params) 31 render json: { status: 'SUCCESS', message: 'Updated the user', data: @user } 32 else 33 render json: { status: 'SUCCESS', message: 'Not updated', data: @user.errors } 34 end 35 end 36 37 private 38 39 def set_user 40 @user = List.find(params[:id]) 41 end 42 43 def user_params 44 params.require(:user).permit(:title) 45 end 46 end 47 end 48end
エラー内容は以下の通りです。
# POST時のエラー POST http://localhost:3333/api/v1/users 400 (Bad Request) # DELETE時のエラー DELETE http://localhost:3333/api/v1/users/298486374 500 (Internal Server Error)
回答1件
あなたの回答
tips
プレビュー