2

これはerbテンプレートです:

<div id='recipe-form'>
  <% if @recipe.errors %>
    <div id='errors'>
      <% @recipe.errors.messages.each do |field, messages| %>
        <div class='error'>
          <div class=field'><%= field %></div>
          <div class='messages'>
            <ul>
            <% messages.each do |message| %>
              <li><%= message %></li>
            <% end %>
            </ul>
          </div>
        </div>
      <% end %>
    </div>
  <% end %>
  <%= form_for @recipe, :html => {:multipart => true}, :url => '/recipes'  do |f| %>

    <%= f.label :title, 'title' %>
    <%= f.text_field :title %>

    <div id="photo-upload">
      <%= file_field :photo0, :image, :id => 0 %>
    </div>

    <div id='existing-photos'>
      <% recipe.photos.each do |photo| %>
        <div id='<%= photo.id %>'>
          <img src='<%= photo.image.url(:thumb) %>' />
          <ul>
            <li>
              <%= link_to 'delete',
                    recipe_photo_url(
                      :recipe_id => @recipe.slug,
                      :id => photo.id
                    ),
                    :method => :delete,
                    :remote => true
              %>
            </li>
          </ul>
        </div>
      <% end %>
    </div>

    <%= f.label :body, 'body' %>
    <%= f.cktext_area :body, :ckeditor => {:width => "500"} %>

    <%= f.label :tags, 'tags (comma separated)' %>
    <%= text_field_tag :tags %>

    <%= submit_tag 'submit' %>
  <% end %>
</div>

これは作成アクションです。

def create
  @recipe = Recipe.new(params[:recipe])

  photo_keys = params.keys.select{|k|k.match(/^photo/)}
  @photos = []
  photo_keys.each do |photo_key|
    @photos << Photo.new(params[photo_key])
  end

  @recipe.tags = Tag.parse(params[:tags])

  @recipe.author = current_user

  if @recipe.save &&
       @photos.all?{|photo|photo.save}
    @photos.each do |photo|
      photo.recipe_id = @recipe.id
      photo.save
    end
    flash[:notice] = 'Recipe was successfully created.'
    redirect_to recipe_url(@recipe.slug)
  else
    flash[:error] = 'Could not create recipe. '
    flash[:error] += 'Please correct any mistakes below.'
    render :action => :new
  end
end

そして、これが新しいアクションです:

def new
  @recipe = Recipe.new
end

上記で使用しているように form_for を使用すると、フィールドが自動的に再入力されることを読みました。

@recipe.errorserb テンプレート内から調べると、アクションがレンダリングされたときに生成されたエラーも利用できることがわかりますcreatenew、フィールドは再入力されません。

4

1 に答える 1

2

実際に何render action:ができるかはわかりませんが、私がしていることと機能することは次のとおりです。アクションをレンダリングする代わりに、を使用してテンプレートをレンダリングするだけrender :newです。

create アクションで既に使用しているのと同じインスタンス変数 (@ が付いているもの) を設定する必要があります。

于 2013-07-02T01:06:37.763 に答える