0
以及我有这个问题回形针不显示图像
我有这个在我的模型服务
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
,这在我看来,服务#指数
<div>
<%= image_tag service.images(:md)%>
</div>
,但有在我看来,在我放置图像集时出现问题:large或:xl,但是当我放入时:md图像不显示。我不知道发生了什么