vote up 0 vote down star

New to Rails... here goes:

If I want my 'create' method to respond differently to an AJAX request than to a normal POST request, can I have the method detect which was used?

Or, is it better to use different methods for AJAX and non-AJAX requests?

Thanks for your input.

flag

67% accept rate

2 Answers

vote up 1 vote down check

Alternately, you can use a respond_to block:

def create
  # ...
  respond_to do |format|
    format.html # for standard requests
    format.js # for AJAX requests
    # other formats...
  end
end
link|flag
vote up 1 vote down

request.xhr?

link|flag

Your Answer

Get an OpenID
or

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