2016-01-28 44 views
0

我有许多图像(add_images_to_steps)属于属于diys的步骤。所有信息都以DB浏览器显示正确保存,但我在查看图像时遇到问题。CarrierWave未定义的方法`image_url'或破碎的图像

的意见/小五金/ show.html.erb

<p id="notice"><%= notice %></p> 
    <h2><%= @diy.summary %></h2> 
     <% @steps.each do |step| %> 
     <p><%= step.step_content %></p> 
     <% step.add_images_to_steps.each do |i| %> 
      <%= image_tag i.image_url.to_s %> 
     <% end %> 
    <% end %> 

我得到NoM​​ethodError中小五金#显示

未定义的方法`IMAGE_URL”为#

如果我改变

I get this

-------------------------- ---------------------------------------------

继承人我的迁移,模型和控制器。

-------------------------------------------- ---------------------------

diys_controller.rb

class DiysController < ApplicationController 
    before_action :set_diy, only: [:show, :edit, :update, :destroy] 

def show 
    @diy = Diy.find(params[:id]) 
    @steps = @diy.steps.all 
    @diy.add_images_to_steps.all 
end 

def new 
    @diy = Diy.new 
    @step = @diy.steps.new 
    @step.add_images_to_steps.new 
end 

... 

def diy_params 
    params.require(:diy).permit(:title, :summary, :tip, :warning, steps_attributes: [:step_content, add_images_to_steps_attributes: [:image]]) 
end 

型号/ diy.rb

class Diy < ActiveRecord::Base 
    has_many :steps, dependent: :destroy 
    accepts_nested_attributes_for :steps, reject_if: :all_blank 
    has_many :add_images_to_steps, :through => :steps, dependent: :destroy 
    accepts_nested_attributes_for :add_images_to_steps 
end 

个模型/ step.rb

class Step < ActiveRecord::Base 
    belongs_to :diy 
    has_many :add_images_to_steps, dependent: :destroy 
    accepts_nested_attributes_for :add_images_to_steps 
    mount_uploader :image, ImageUploader 
end 

模型/ add_images_to_step.rb

class AddImagesToStep < ActiveRecord::Base 
    belongs_to :step 
end 

自定迁移

class CreateDiys < ActiveRecord::Migration 
    def change 
    create_table :diys do |t| 
     t.string :title 
     t.text :summary 
     t.text :tip 
     t.text :warning 
     t.timestamps null: false 
    end 
    end 
end 

步骤迁移

class CreateSteps < ActiveRecord::Migration 
    def change 
    create_table :steps do |t| 
     t.belongs_to :diy 
     t.text :step_content 
     t.timestamps null: false 
    end 
    end 
end 

add_images_to_step迁移

class CreateAddImagesToSteps < ActiveRecord::Migration 
    def change 
    create_table :add_images_to_steps do |t| 
     t.belongs_to :step 
     t.string :image 
     t.timestamps null: false 
    end 
    end 
end 
+0

尝试image_url image_url intead – Ezequiel

+0

不起作用:(但谢谢你反正 –

回答

0

我想通了!

不得不添加

mount_uploader:图像,ImageUploader

到../models/add_images_to_step.rb

变化高清store_dir到

“#{ Rails.root}/public/uploads /“

在../app/uploaders/image_uploader.rb

“<%= IMAGE_TAG i.image_url.to_s%>”

是对用于放映视图

相关问题