回形针不显示图像
Paperclip don't show the image
我有这个问题
我的模型服务中有这个
class Service < ApplicationRecord
belongs_to :user
has_attached_file :images, :styles => {:md => "300x300>", :large => "500x500>" , :xl => "700x700#"}, :default_url => "/app/assets/images/thumb/missing.png"
validates_attachment_content_type :images, :content_type => /\Aimage\/.*\Z/
end
我认为这是服务#index
<div>
<%= image_tag service.images(:md)%>
</div>
但是当我输入 :large 或 :xl 但当我输入 :md 时图像不显示,我认为图像设置有问题。我不知道发生了什么
如果在索引视图中将 :large
和 :xl
替换为 :md
时它们正常工作,那么我猜根本就没有 :md
可用的版本以显示。在您实际上传图片后,您是否已将 :md
添加到模型中?我会删除图像并重试。
我有这个问题
我的模型服务中有这个
class Service < ApplicationRecord
belongs_to :user
has_attached_file :images, :styles => {:md => "300x300>", :large => "500x500>" , :xl => "700x700#"}, :default_url => "/app/assets/images/thumb/missing.png"
validates_attachment_content_type :images, :content_type => /\Aimage\/.*\Z/
end
我认为这是服务#index
<div>
<%= image_tag service.images(:md)%>
</div>
但是当我输入 :large 或 :xl 但当我输入 :md 时图像不显示,我认为图像设置有问题。我不知道发生了什么
如果在索引视图中将 :large
和 :xl
替换为 :md
时它们正常工作,那么我猜根本就没有 :md
可用的版本以显示。在您实际上传图片后,您是否已将 :md
添加到模型中?我会删除图像并重试。