2014-02-25 57 views

回答

0

需要在你特定的命名約定一些更多的細節,但是讓我們假設如下:

  1. 您有一個名爲回形針附件的模型model_with_image_attachment
  2. 這種模式有一個附件,你」已命名爲attachment_name

這將顯示圖像resolution_image屬性爲true

<%= image_tag model_with_image_attachment.attachment_name.url if model_with_image_attachment.resolution_image %> 
+0

該模型是圖像和attachment_name是圖像。 –

+0

模型圖像是多態的 –

2
<%= image_tag @model.picture.url if @model.resolution_image %>