我有一些问题。我知道,我并不孤单。我尝试使用carrierwave和minimagic在我的项目(博客)上添加图像,但它的回复:图像翻译缺失:
"ru.errors.messages.mini_magick_processing_error"
我已经在我的机器上安装了ImageMagick,然后安装了宝石。
我的表格:
<%= bootstrap_form_for @post, :html => { multipart: true } do |f| %>
<div class="form-group">
<%= f.file_field :image %>
</div>
我的模特:
class Post < ApplicationRecord
mount_uploader :image, ImageUploader
validates :title, :summary, :body, presence: true
end
我之前从未使用过这些宝石,现在我真的不知道该怎么做。我安装了ImageMagic的最新版本。我听说它是Windows上的一个流行问题。有人可以帮助学生吗?