Nuxt.jsからaxiosでRails APIを叩いて複数のPDFファイルのアップロードを行いたいと思っております。
RailsではActive Storageを使用しています。
1つのファイルのアップロードは実装することが出来たのですが、複数ファイルになると上手くいきません。
試行錯誤し以下のようなソースを書いてみたところ、unpermitted parameter files
というエラーがでてファイルがアップロードできません。
どこに問題があるのかさっぱり分からないのですが、何かヒントを頂けないでしょうか...
js
1// nuxt 2 3<template> 4 <div> 5 <v-card> 6 <v-card-title>PDF登録フォーム</v-card-title> 7 <v-form> 8 <input 9 type="file" 10 @change="onChange" 11 accept="application/pdf" 12 multiple 13 /> 14 <v-btn @click="upload"> 15 アップロード 16 </v-btn> 17 </v-form> 18 </v-card> 19 </div> 20</template> 21 22<script> 23export default { 24 data() { 25 return { 26 files: '' 27 } 28 }, 29 methods: { 30 onChange(event) { 31 this.files = event.target.files 32 }, 33 upload() { 34 const formData = new FormData() 35 36 const pdfs = [] 37 for (let i = 0; i < this.files.length; i++) { 38 pdfs.push(this.files[i]) 39 } 40 formData.append('user[files[]]', pdfs) 41 42 this.$axios 43 .$put(`/users/${this.$store.$auth.user.id}`, formData, { 44 headers: { 45 'Content-Type': 'multipart/form-data' 46 } 47 }) 48 .then((response) => { 49 console.log(response.data.status) 50 }) 51 .catch((error) => { 52 console.log(error) 53 }) 54 } 55 } 56} 57</script>
rb
1# models/user.rb 2 3class User < ApplicationRecord 4 include Rails.application.routes.url_helpers 5 has_secure_password 6 has_many_attached :files 7end
rb
1# controllers/api/v1/users_controller.rb 2 3module Api 4 module V1 5 class UsersController < ApplicationController 6 before_action :authenticate_user 7 before_action :set_user, only: [:show, :update, :destroy] 8 9 wrap_parameters :user, include: [:name, :email, :url, :student_number, :admin, :password, :password_confirmation] 10 11 def update 12 if @user.update(user_params) 13 render json: { status: 'SUCCESS', message: 'Updated the user', data: @user } 14 else 15 render json: { status: 'SUCCESS', message: 'Not updated', data: @user.errors } 16 end 17 end 18 19 private 20 21 def set_user 22 @user = User.find(params[:id]) 23 end 24 25 def user_params 26 params.require(:user).permit(:name, :email, :avatar, :password, :password_confirmation, files: []) 27 end 28 end 29 end 30end 31
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。