私はCarrierwaveを使用して、Ryan Batesの改訂版#196スクリーンキャストに基づいてRailsネストモデルに画像フィールドを追加しています。Carrierwaveビットは彼のスクリーンキャスト#253に基づいています
質問と回答のモデルは、カテゴリモデルにネストされています。
画像をアップロードして、[表示]ページに表示することができます。しかし、[編集]ビューに戻ると、画像が表示されず、[ファイルの選択]ボタンの横に[ファイルが選択されていません]というテキストが表示されます。[表示]ページに移動して前後に移動できますが、[表示]には表示されますが、[編集]には表示されません。私のユーザーは、毎回新しい画像をアップロードする必要があると考えています。
ショービューに次のコード行があります。
<%= image_tag question.image_url(:thumb).to_s if question.image? %>
しかし、それを_formビューに入れようとすると、不明なローカル変数またはメソッドエラーが発生します。
いくつかのifステートメントを試しましたが、機能しませんでした。すべてを編集ビューに入れようとしましたが、役に立ちませんでした。
私の_formビュー:
<%= form_for @category, :html => {:multipart => true} do |f| %>
<% if @category.errors.any? %>
<div class="error_messages">
<h2><%= pluralize(@category.errors.count, "error") %> prohibited this category from being saved:</h2>
<ul>
<% @category.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div id="categorytitle" class="field">
<%= f.label :name, "Category Name" %><br />
<%= f.text_field :name %>
</div>
<%= f.fields_for :questions do |builder| %>
<%= render 'question_fields', f: builder %>
<% end %>
<%= link_to_add_fields "Add Question", f, :questions %>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
私の_質問は部分的
<fieldset id="questionarea">
<%= f.label :content, "Question" %>
<%= f.text_field :content%>
<hr>
<div class="field">
<p>
<%= f.check_box :active, class: "pull-left" %>
<%= f.label :active %>
<span class="help-block">Turning questions on and off helps you customize the category.</span>
</p>
</div>
<hr>
<div class="field clearthat">
<%= f.label :image, "Add an Image"%>
<span class="help-block">Images will help non-readers understand the question.</span>
<%= f.file_field :image %>
<%= f.hidden_field :image_cache %>
</div>
<hr>
<!-- <%= link_to "remove", '#', class: "remove_fields" %> -->
<p class="clearthat"> </p>
<%= f.fields_for :answers do |builder| %>
<%= render 'answer_fields', f: builder %>
<% end %>
<%= link_to_add_fields "Add Answer", f, :answers %>
</fieldset>
_answerパーシャルがありますが、それは理解されていないようです。
これは、画像を_questionパーシャルに直接入れようとしたときに表示されるエラーメッセージです(上記の_questionコードの中央から切り取ったものです)。
<div class="field clearthat">
<%= f.label :image, "Add an Image"%>
<span class="help-block">Images will help non-readers understand the question.</span>
<%= image_tag question.image_url(:thumb).to_s if question.image? %>
<%= f.file_field :image %>
<%= f.hidden_field :image_cache %>
</div>
これが私が得るエラーです:
NameError in Categories#edit
undefined local variable or method `question'
私のカテゴリーモデル:
class Category < ActiveRecord::Base
attr_accessible :name, :questions_attributes
has_many :questions
accepts_nested_attributes_for :questions, allow_destroy: true
end
私の質問モデル:
class Question < ActiveRecord::Base
attr_accessible :content, :category_id, :answers_attributes, :active, :image, :image_cache
belongs_to :category
has_many :answers
accepts_nested_attributes_for :answers, allow_destroy: true
mount_uploader :image, ImageUploader
end
私のカテゴリコントローラー:
class CategoriesController < ApplicationController
before_filter :signed_in_user, only: [:index, :edit, :update, :destroy]
before_filter :correct_user, only: [:edit, :update]
before_filter :admin_user, only: :destroy
def index
@categories = Category.all
end
def show
@category = Category.find(params[:id])
end
def new
@category = Category.new
end
def create
@category = Category.new(params[:category])
if @category.save
redirect_to @category, :notice => "Successfully created category."
else
render :action => 'new'
end
end
def edit
@category = Category.find(params[:id])
end
def update
@category = Category.find(params[:id])
if @category.update_attributes(params[:category])
redirect_to @category, :notice => "Successfully updated category."
else
render :action => 'edit'
end
end
def destroy
@category = Category.find(params[:id])
@category.destroy
redirect_to categories_url, :notice => "Successfully destroyed category."
end
private
def signed_in_user
unless signed_in?
store_location
redirect_to signin_path, notice: "Please sign in."
end
end
def correct_user
@user = User.find(params[:id])
redirect_to(root_path) unless current_user?(@user)
end
def admin_user
redirect_to(root_path) unless current_user.admin?
end
終わり
助けてくれる人に感謝します。