Rails API Paperclip。上传图像将其转换为base 64并保存并检索它

时间:2016-03-03 07:19:02

标签: ruby-on-rails ruby ruby-on-rails-4

您好我正在使用Ruby on Rails创建一个api。

我正在使用paperclip gem。

我有一个拥有头像的profile模型。我如何允许用户上传头像?目前我很失落。问题是我可以使这个架构工作。我是初学者,所以任何帮助都会很棒。我真的不确定如何获得base64转换后的图像并将图像存储在数据库中。

我的Profile型号:

class Profile < ActiveRecord::Base
  belongs_to :user
  validates :user, presence: true

  before_validation :set_image

  has_attached_file :avatar, styles: {thumb: "100x100>" }, default_url: "/images/:style/missing.png"
  validates_attachment_content_type :avatar, content_type: /\Aimage\/.*\Z/

  #image_json is the image in base64 string

  def set_image
    StringIO.open(Base64.decode64(image_json)) do |data|
      data.class.class_eval { attr_accessor :original_filename, :content_type }
      data.original_filename = "file.gif"
      data.content_type = "image/gif"
      self.avatar = data
    end
  end
end

这是我的更新操作:目前是个人资料没有头像,我试图用一个更新它。

def update
  if @profile.update(profile_params)
    render json: @profile, status: :ok
  else
    render json: json_errors(@profile.errors), status: :unprocessable_entity
  end
end

模式

  create_table "profiles", force: :cascade do |t|
    t.integer  "user_id"
    t.date     "birthday"
    t.text     "bio"
    t.string   "phone"
    t.string   "address_line_1"
    t.string   "address_line_2"
    t.string   "suburb"
    t.string   "state"
    t.string   "postcode"
    t.string   "country_code"
    t.string   "first_name"
    t.string   "last_name"
    t.string   "avatar_file_name"
    t.string   "avatar_content_type"
    t.integer  "avatar_file_size"
    t.datetime "avatar_updated_at"
  end

2 个答案:

答案 0 :(得分:3)

您可以尝试关注上传

 def set_image
  file = Paperclip.io_adapters.for(put base64 data of file)
  file.original_filename = "avatar_name"
  self.avatar = file
 end

在模型中添加require "base64"

答案 1 :(得分:0)

需要模型:

InstrumentationRegistry.getInstrumentation()

首先将其转换为Base64格式:

Base64 Ruby module docs

require "base64"

在View中检索,就像:

Base64.encode64(your_content_here)

注意:根据您在数据中使用的内容更改图像格式:image / png部分。

此过程就像将文本数据保存到DB。