简体   繁体   English

滑轨,回形针,反应:不保存图像

[英]Rails, paperclip, react: don't save image

Have problem with save image via parerclip: https://gist.github.com/pustovalov/9bb21936e1e1371a0da2ce3388877478 通过parerclip保存图像时遇到问题: https ://gist.github.com/pustovalov/9bb21936e1e1371a0da2ce3388877478

any suggestions how to fix this problem? 任何建议如何解决此问题?

Found an answer, need convert base64 to img: 找到答案,需要将base64转换为img:

#app/models/item.rb

private
  def parse_image
  image = Paperclip.io_adapters.for(image_base)
  image.original_filename = "file.jpg"
  self.picture = image
end

http://tutorials.pluralsight.com/ruby-ruby-on-rails/handling-file-upload-using-ruby-on-rails-5-api http://tutorials.pluralsight.com/ruby-ruby-on-rails/handling-file-upload-using-ruby-on-rails-5-api

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM