前提・実現したいこと
Rails,vueでSPAアプリケーションを作成しています。ActiveStorageを使用した、画像投稿機能を実装したいと考えています。
発生している問題・エラーメッセージ
RailsのActiveStorageのアタッチカラムにjson形式でデータを登録したいのですが、エラーが出て反映されません。
該当のソースコード
model
1# frozen_string_literal: true 2class Book < ApplicationRecord 3has_one_attached :eyecatch 4 attr_accessor :image 5 6 def eyecatch=(image) 7 if image.present? 8 prefix = image[%r{(image|application)(/.*)(?=\;)}] 9 type = prefix.sub(%r{(image|application)(/)}, '') 10 data = Base64.decode64(image.sub(/data:#{prefix};base64,/, '')) 11 filename = "#{Time.zone.now.strftime('%Y%m%d%H%M%S%L')}.#{type}" 12 File.open("#{Rails.root}/tmp/#{filename}", 'wb') do |f| 13 f.write(data) 14 end 15 eyecatch.detach if eyecatch.attached? 16 eyecatch.attach(io: File.open("#{Rails.root}/tmp/#{filename}"), filename: filename) 17 FileUtils.rm("#{Rails.root}/tmp/#{filename}") 18 end 19 end 20end
controller
1class Api::V1::BooksController < ApiController 2def index 3 books = Book.all 4 render json: books 5 end 6 7def create 8 book = Book.new(book_params) 9 if book.save 10 book.eyecatch = book_params[:image] 11 render json: book, status: :created 12 else 13 render json: { errors: book.errors.full_messages }, status: :unprocessable_entity 14 end 15 end 16 17private 18 19def book_params 20 params.require(:book).permit(:title, :content, :rating, :image) 21 end
上記の設定後に以下のcurlコマンドを打つとエラーが出ます
curl
1curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d '{"book": {"title": "Sample title.", "content": "Sample body.", "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEX///+nxBvIAAAAAXRSTlMAQObYZgAAAApJREFUeNpjYAAAAAIAAeUn3vwAAAAASUVORK5CYII="}}' http://localhost/api/v1/books 2 3- 以下がエラー文です - 4{"errors":["undefined method `sub' for nil:NilClass"]}* Closing connection 0
試したこと
この記事を参考にコードを書いてみたのですが上手く出来ず...
エラー分を自分なりに調べたところ、画像データをbase64化するコードに問題がありそう?ぐらいまでしか分からず、
皆さんの知識をお借りしたいと思っております。
よろしくお願い致します。
補足情報(FW/ツールのバージョンなど)
Ruby 2.7.1
Rails 6.0.3
あなたの回答
tips
プレビュー