我在使用ActiveStorage上传图像/ pdf时遇到问题。图片似乎没有问题,但是当我尝试显示它们时会导致错误。
我的blog
模型has_one_attached
:image
和has_one_attached
:pdf
。上载曾经可以正常工作(所以我知道我已经安装了ActiveStorage并正确设置了Amazon s3),但是出了点问题。
唯一复杂的一点是,无论它是否具有PDF(不是所有博客都将具有pdf ...都应具有图像),我需要它才能工作。
我的blog#create
方法是:
def create
@blog = Blog.new(blog_params)
@blog.user_id = current_user.id
if @blog.published
@blog.published_on = DateTime.current
end
respond_to do |format|
if @blog.save
if @blog.image.attached?
@blog.image.purge
end
@blog.image.attach(params[:image])
if @blog.pdf.attached?
@blog.pdf.purge
end
@blog.pdf.attach(params[:pdf])
format.html { redirect_to @blog, notice: 'Blog was successfully created.' }
format.json { render :show, status: :created, location: @blog }
else
format.html { render :new }
format.json { render json: @blog.errors, status: :unprocessable_entity }
end
end
end
我的blog#update
方法是:
def update
if @blog.published
@blog.published_on = DateTime.current
end
if @blog.image.attached?
@blog.image.purge
end
@blog.image.attach(params[:image])
if @blog.pdf.attached?
@blog.pdf.purge
end
@blog.pdf.attach(params[:pdf])
respond_to do |format|
if @blog.update(blog_params)
format.html { redirect_to @blog, notice: 'Blog was successfully updated.' }
format.json { render :show, status: :ok, location: @blog }
else
format.html { render :edit }
format.json { render json: @blog.errors, status: :unprocessable_entity }
end
end
end
我的表单很简单:
<%= simple_form_for(@blog) do |f| %>
<%= f.error_notification %>
<%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %>
...
<div class="form-group">
<%= f.label "Blog Image" %><br />
<%= f.file_field :image %>
</div>
<div class="form-group">
<%= f.label "Linked PDF" %><br />
<%= f.file_field :pdf %>
</div>
...
<div class="form-actions text-center">
<%= f.button :submit, class: "btn-outline-primary" %>
</div>
<% end %>
我试图这样在博客中显示图片:
<div class="frame" style="background-image: url(<%= rails_blob_url(@blog.image) %>)"></div>
PDF如下:
<h2 class="cta text-center"><%= link_to @blog.cta, rails_blob_url(@blog.pdf), target: "_blank" %></h2>
我得到的错误是signed_id delegated to attachment, but attachment is nil
页面上称为背景图像的位置上的blog#show
。如果有帮助,我在localhost
和Heroku上也会遇到相同的错误。
最后,我在this question上看到此错误,并尝试删除并重新创建数据库,但无济于事。
任何人都可以看到这里出了什么问题吗?
答案 0 :(得分:1)
我只是遇到了这个错误,并且真的很难弄清楚可能发生了什么。它在我提交表格时首次出现,但不包含附件。原来,我需要检查是否确实有附件,并处理这种可能性。
也许尝试将@ blog.pdf.attach(params [:pdf])移至blog#create中的response_to之前
然后,当尝试显示图像时,也许您可以尝试类似的操作
<% if blog.pdf.attached? == false %>
<p>No pdf attached</p>
<% elsif blog.pdf.previewable? %>
<%= link_to(image_tag(blog.pdf.preview(resize: "50x50>")), rails_blob_path(blog.pdf, disposition: "attachment"))
%>
<% elsif blog.pdf.variable? %>
<%= link_to(image_tag(blog.pdf.variant(resize: "50x50")), rails_blob_path(blog.pdf, disposition: "attachment"))%>
<% else %>
<%= link_to "Download file", rails_blob_path(@blog.pdf, disposition: "attachment") %>
<% end %>
Heroku在active storage here上有一篇不错的文章,可能也有帮助。