Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to do an AJAX call with Rails. The call is to the change_profile action in my controller. The contents of this action are as follows:

def change_profile
    @test = params[:test]
    puts "AAAAAAA #{@test}"
    respond_to do |format|
       format.html
       format.js
    end
    render(:text => "FINISHED THE AJAX REQUEST")
end

When I call this, however, the Rails console says:

ActionView::MissingTemplate (Missing template main/change_profile  ....

I don't understand why this is happening. Since I'm rendering text, shouldn't it know not to try to find the template and just render the text?

share|improve this question
That means you don't have a View called change_profile. – Only Bolivian Here Jul 13 '12 at 1:06
Right, why do I need one? I'm just trying to send text back to the client in response to the AJAX request, a view would be totally superfluous. Am I going about this the right way? – Andrew Latham Jul 13 '12 at 1:07
Why do you have a respond_to block w/ HTML and JS formats if you want to render something else? – Dave Newton Jul 13 '12 at 1:08
It's left over from something else. – Andrew Latham Jul 13 '12 at 1:15

1 Answer

up vote 3 down vote accepted

When left without a {}, the respond_to block looks for a file called change_profile.erb.js or some other change_profile.xxx.js. Add your code within the respond_to block

def change_profile
    @test = params[:test]
    puts "AAAAAAA #{@test}"
    respond_to do |format|
       format.html
       format.js {
         render :text => "FINISHED THE AJAX REQUEST"
       }
    end
end
share|improve this answer
Perfect, thank you! – Andrew Latham Jul 13 '12 at 1:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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