Ruby on Rails Tuesday, July 7, 2015

Bala kishore Pulicherla wrote in post #1176274:
> try with type: "PUT"
>
> "POST" is for create
>
> On Tue, Jul 7, 2015 at 11:08 AM, Faizan Ali <lists@ruby-forum.com>
> wrote:
>
>> $.ajax({
>> --
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> Mobile : +91 8978 016 276
>
> Facebook : http://www.facebook.com/bala.kishore.21
> linkedin : http://www.linkedin.com/profile/view?id=7562848
> twitter : https://twitter.com/balakishorep



$(document).ready(function(){
$('.clap').click(function(){
var dataString = "student[followers]=5";
$.ajax({
type: "POST",
url: "/students/",
data: dataString,
success: function() {
window.alert('success');
}
});
});
});


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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f61529747c27f126725e1e69d02e3c5f%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment