1

我正在构建一个基本的 Rails 4 应用程序,但似乎遇到了令人沮丧的问题。我一直在关注CarrierWave Railscast,虽然我能够让图像显示在 /image/show.html.erb 上,但我在让我上传的任何图像显示时遇到了一些困难每个图像关联的图库。

奇怪的是,没有记录任何错误。页面加载时页面或终端中没有出现任何 Rails 错误;我知道有问题的唯一方法是图像应该出现的 div 根本没有出现。

我真的很难过。如果你看,画廊的 show 动作中的 .images div 会呈现,但绝对没有任何子元素呈现。我究竟做错了什么?

源代码在这里

应用程序/模型/image.rb

class Image < ActiveRecord::Base
    belongs_to :gallery
    mount_uploader :image, ImageUploader
end

应用程序/模型/gallery.rb

class Gallery < ActiveRecord::Base
    has_many :images
end

应用程序/上传器/image_uploader.rb

class ImageUploader < CarrierWave::Uploader::Base

  include CarrierWave::RMagick

  storage :file

  def store_dir
    "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
  end

   version :thumb do
     process :resize_to_limit => [200, 200]
   end


end

apps/views/images/show.html.erb
在下面,我们可以看到可以毫无问题地渲染图像,因为这是它们各自控制器的视图。

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

<p>
  <strong>Description:</strong>
  <%= @image.description %>
</p>

<p>
  <strong>Image:</strong>
  <%= image_tag @image.image_url.to_s %>
</p>  

/apps/views/galleries/show.html.erb
这就是一切变得棘手的地方。首先,无论我在图像 div 中进行什么更改,其中的所有内容似乎都是空白的。我尝试多次更改“@gallery.images 中的图片”位,但无济于事。

<div id="images">
  <% for image in @gallery.images %>
    <div class="image">
      <%= image_tag image.image_url(:thumb) %>
      <%= image.description %>
      <div class="name"><%= image.title %></div>
      <div class="actions">
        <%= link_to "edit", edit_image_path(image) %> |
        <%= link_to "remove", image, :confirm => 'Are you sure?', :method => :delete %>
      </div>
    </div>
  <% end %>
  <div class="clear"></div>
</div>

<p>
  <%= link_to "Add a Painting", new_image_path(:gallery_id => @gallery) %> |
  <%= link_to "Remove Gallery", @gallery, :confirm => 'Are you sure?', :method => :delete %> |
  <%= link_to "View Galleries", galleries_path %>
</p>
4

1 回答 1

1

您需要关联图库和图像。一种选择是像现在一样将 gallery_id 传递给新操作,将其设置在新图像的控制器中,添加一个隐藏字段以将其传输到创建操作并将那里的参数列入白名单。

另一种选择是将图像路由嵌套到图库路由中,如下所示:

resources :galleries do
  resources :images
end

/galleries/123/images/234这将创建像和之类的URL galleries/1233/images/new。您可以创建指向这些页面的链接,例如使用edit_galleries_image_path(@gallery, @image). 同样,您需要在新图像上设置正确gallery_id的值images#new,但这应该让form_for生成操作的正确路径,然后您可以在其中gallery_id获得可用的参数。走这条路rake routes应该是一个方便的工具。

于 2013-09-15T23:38:29.363 回答