where do I put the respond_to if there is an if-statement in the controller in rails?
Asked Answered
R

1

5

I have a controller that has if-condition:

  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

Where do I put the respond_to block:

respond_to do |format| 
  format.html {}
  format.json {render :json =>@contact_email}
end
Raveaux answered 10/6, 2010 at 4:49 Comment(0)
N
9
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
Nealy answered 10/6, 2010 at 5:14 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.