куда я могу поместить response_to, если в контроллере в rails есть оператор if? - PullRequest
4 голосов
/ 10 июня 2010

У меня есть контроллер с условием if:

  def update
    @contact_email = ContactEmail.find(params[:id])

    if @contact_email.update_attributes(params[:contact_email])
      flash[:notice] = "Successfully updated contact email."
      redirect_to @contact_email
    else
      render :action => 'edit'
    end
  end

Где я могу поместить блок response_to:

respond_to do |format| 
  format.html {}
  format.json {render :json =>@contact_email}
end

1 Ответ

7 голосов
/ 10 июня 2010
def update
  @contact_email = ContactEmail.find(params[:id])
  ok = @contact_email.update_attributes(params[:contact_email])

  respond_to do |format| 
    format.html {
      if ok
        flash[:notice] = "Successfully updated contact email."
        redirect_to @contact_email
      else
        render :action => 'edit'
      end
    }
    format.json {
      if ok
        render :json =>@contact_email
      else
        ...
      end
    }
  end
end
...