0
我在回形針圖像表中有一個名爲resolution_image type boolean的列。我想顯示圖像的字段resolution_image是真實的,我如何顯示此圖像?在查詢後顯示圖像回形針
我在回形針圖像表中有一個名爲resolution_image type boolean的列。我想顯示圖像的字段resolution_image是真實的,我如何顯示此圖像?在查詢後顯示圖像回形針
需要在你特定的命名約定一些更多的細節,但是讓我們假設如下:
model_with_image_attachment
attachment_name
這將顯示圖像resolution_image
屬性爲true
:
<%= image_tag model_with_image_attachment.attachment_name.url if model_with_image_attachment.resolution_image %>
<%= image_tag @model.picture.url if @model.resolution_image %>
該模型是圖像和attachment_name是圖像。 –
模型圖像是多態的 –