Dave Aronson wrote in post #1176300: > On Tue, Jul 7, 2015 at 1:38 AM, Faizan Ali <[email protected]> wrote: > >> $.ajax({ >> type: "POST", >> url: "/students/", > > First, as bala kishore pulicherla said, you should be using PUT rather > than POST. Second, though, you also need to tell Rails *which* > student to update. So, rather than /students/, it should be > /students/42 or whatever. > > -Dave > > -- > Dave Aronson, consulting software developer of Codosaur.us, > PullRequestRoulette.com, Blog.Codosaur.us, and Dare2XL.com.
I tried with URL "/students/1", which is obviously for editing the Student with id 1, but with type: "POST" the URL returns 404 error in the console. So, I tried with type: "PUT", the URL here doesn't return the 404 error but it doesn't update the Student. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/62915c43f826ae154fe56763a3ef017c%40ruby-forum.com. For more options, visit https://groups.google.com/d/optout.

