0

我有一个 form_for 表单,它使用 Shrine gem 将图像上传到我的机器上。我正在 html 文件中创建新实例。我正在尝试为新实例设置 cached_image_data,因为当我尝试在控制器中创建 StructureImage 的新实例时出现错误。但我不知道怎么写。我已将插件包含在神殿.rb 文件以及 ImageUploader 类中。

require "image_processing/mini_magick"

class ImageUploader < Shrine
    include ImageProcessing::MiniMagick
    plugin :cached_attachment_data

<%= form_for StructureImage.new(audit_structure_id: audit_structure.id),
    url: audit_photos_path(current_audit),
    html: { class: 'js-autosave-form camera gphoto', multipart: true } do |f| %>
    <%=f.hidden_field :image, value: self.cached_image_data %>
    <p style="display: block;">
    <%= f.submit "Upload images",
        class: 'btn btn-primary', data: { disable_with: 'Uploading...' } %>
    </p>
<%- end %>

当我检查错误消息以了解为什么它没有创建新的 StructureImage 时,我收到 ["Image data Image data missing"]。我不确定我是否在表单中正确设置了图像的值。

我在浏览器中收到此错误

#<#:0x0055e31019d770> 的未定义方法 `cached_image_data'

我的神社.rb 文件

require 'shrine'
require 'shrine/storage/file_system'

需要“神社/存储/google_drive_storage”

Shrine.storages = {
cache: Shrine::Storage::FileSystem.new("public", prefix: 
"uploads/cache"), # temporary
store: Shrine::Storage::FileSystem.new("public", prefix: 
"uploads/store"), # permanent
}

Shrine.plugin :activerecord
Shrine.plugin :cached_attachment_data

现在我尝试使用 self.cached_image_data 但我得到了那个错误。我试过 structure_image.cached_iamge_data 没用。我试图在控制器中分配参数 cached_image_data 。那也没有用。

请帮忙。

4

1 回答 1

1

我不确定您的图像数据首先应该如何进入chached_image_data。此字段通常在重新提交表单时使用,例如由于其他字段中的验证错误。

但是,为了正确呈现您的表单,您需要参考f.object.cached_image_data. self在这种情况下可能是引用视图,可能是表单,但绝对不是表单的对象。

通常你会在你的控制器中创建对象,例如@structure_image = StructureImage.new(...),然后用form_for @structure_imageand创建你的表单f.hidden_field :image, value: @structure_image.cached_image_data

于 2017-12-14T01:45:49.490 回答