When user clicks a specific item, I use jQuery's post method to update something in the database:

$.post("/posts/" + post_id + "/update_something", 
       { some_param: some_value }, 
       success_handler);

where update_something looks like this:

def update_something
  post = Post.find(params[:id])
  post.update_attributes(:some_field => params[:some_param])
  render :nothing => true
end

The problem is if update_attributes fails, the request still succeeds and success_handler is executed.

How could I cause the request to fail when update_attributes fails such that success_handler won't be executed?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can either do render :status => 500 (or some other error code) in Rails, which will trigger the error callback of $.ajax(), or you can render some JSON with an error message:

render :json => { :success => false }.as_json()

Then in your success_handler function you would:

function success_handler (response) {
    if (response.success) {
        // do stuff
    }
}

Edit:

Oh, and update_attributes returns false when it fails. So you can render your response based on that.

link|improve this answer
Very simple! Thanks! – Misha Moroshko Feb 16 at 6:55
feedback

Well, you have to add an error handler, and give it an error to handle. So, in your JavaScript:

$.post( "/posts/" + post_id + "/update_something",
        { some_param : some_value }
      )
  .done( successHandler )
  .fail( errorHandler )      // define errorHandler somewhere, obviously
;

And in Rails:

def update_something
  post    = Post.find params[ :id ]

  success = post.update_attributes :some_field => params[ :some_param ]

  head success ? :ok : :internal_server_error
end

Note: 500 may or may not be the appropriate error code here—choose whichever among the 400s and 500s is appropriate.

link|improve this answer
Thanks! I wasn't familiar with jQuery's success and error methods. Tried to look for docs but no success. Could you provide a pointer please? – Misha Moroshko Feb 16 at 5:28
1  
+1 You could also just return a success/fail header. Your last line in Rails would look like head success ? :ok : :internal_server_error, where head :ok will return status 200, and head :internal_server_error will return status 500. – gg_s Feb 16 at 5:31
Misha: post, get, and ajax return a jqXHR object which is (poorly) documented here. Reading that closer I noticed that error and success are deprecated and now you should use Deferred's done and fail. I've updated my code to reflect this, as well as incorporate @gg_s's advice, which is a good tip. – Jordan Feb 16 at 5:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.