我的模型是这样的
class Bug < ApplicationRecord
has_many :bug_users, dependent: :destroy
has_many :users , through: :bug_users
belongs_to :project
has_one_attached :screenshot
end
上传部分工作正常,但是当我像这样在视图中显示它时
<% @bugs.each do |bug| %>
<p>
<strong>Title:</strong>
<%= bug.title %>
</p>
<p>
<%if bug.screenshot.present? %>
<strong>Screenshot:</strong>
<%= image_tag bug.screenshot %>
<%end%>
</p>
<% end%>
我得到错误
已解决!这有点疯狂,实际上我看到一个教程,他正在生成模型,如:
rails g model User avatar:attachment
所以,我想也许我必须在我的模型中添加一列,当我这样做的时候,它给出了:
# Could not dump table "bugs" because of following StandardError
# Unknown type 'attachment' for column 'screenshot'
在我的模式中。Rb,但它确实解决了错误,然后我再次运行迁移以删除该列,令人惊讶的是它仍然没有给出此错误。