0

我正在尝试显示我的公共/图像文件夹中的图像,但我不知道如何。

我想要做的是能够将照片分配给艺术家,以便您可以浏览不同艺术家的照片。

这是我的图像模型

class Image < ActiveRecord::Base
  has_many :publishings
  has_many :artists, :through => :publishings
  has_many :comments,:through => :friends

  has_many :comments, :as => :resource, :class_name => "Commentable"
end

这是我的图片 show.html

<p id="notice"><%= notice %></p>

<p>
  <b>Title:</b>
  <%= @image.title %>
</p>

<p>
  <b>Filename:</b>
  <%= @image.filename %>
</p>

<p>
  <b>Likes:</b>
  <%= @image.likes %>
</p>


<%= link_to 'Edit', edit_image_path(@image) %> |
<%= link_to 'Back', images_path %>

这是图像的数据库

class CreateImages < ActiveRecord::Migration
  def self.up
    create_table :images do |t|
      t.string :title :null => false
      t.string :filename :null =>false
      t.integer :likes :default =>0

      t.timestamps
    end
  end

  def self.down
    drop_table :images
  end
end 

提前致谢

4

1 回答 1

2
<%= image_tag @image.filename %>
于 2012-05-05T18:15:27.013 回答