【发布时间】:2016-05-06 14:02:13
【问题描述】:
我有许多属于 diys 的步骤的图像(add_images_to_steps)。所有信息都正确保存为 DB 浏览器显示,但我在查看图像时遇到问题。
与 views/diys/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 %>
我在 Diys#Show 中遇到 NoMethodError
##的未定义方法`image_url'
如果我改变了
到
------------------------------------------ ---------------------------------------
这是我的迁移、模型和控制器。
------------------------------------------ ---------------------------------------
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
models/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
models/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
models/add_images_to_step.rb
class AddImagesToStep < ActiveRecord::Base
belongs_to :step
end
DIY迁移
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
【问题讨论】:
-
尝试 image_path 而不是 image_url
-
不起作用 :( 不过还是谢谢你
标签: ruby-on-rails undefined carrierwave imageurl carrier