2

私は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">&nbsp;</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

終わり

助けてくれる人に感謝します。

4

1 に答える 1

7

助けが得られなかったので、おそらく私の質問はあまりよく聞かれませんでした。しかし、私はついにそれを理解しました!

これは、問題を引き起こしていたコード行です。

<%= image_tag question.image_url(:thumb).to_s if question.image? %>

これは機能したコード行です:

<%= image_tag f.object.image_url(:thumb) %>

完全にはわかりませんが、質問の一部であり、質問と呼ばれるメソッドを呼び出すと、レールは私が何を意味するのかわかりませんでした。

私はこのstackoverflowQAで答えを見つけました:画像付きのRailsネストされたフォーム

これで、ユーザーが画像を変更できるように、ifステートメントが機能するようになりました。

<% if f.object.image? %>
  <%= image_tag f.object.image_url(:thumb) %>
  <%= f.file_field :image %>
<% else %>
  <%= f.file_field :image %>
  <%= f.hidden_field :image_cache %>
<% end %>

次に、file_fieldボタンの値を変更する方法を理解する必要があります。

于 2012-06-19T02:29:18.940 に答える