try with type: "PUT"

"POST" is for create

On Tue, Jul 7, 2015 at 11:08 AM, Faizan Ali <li...@ruby-forum.com> wrote:

> I have a model let's say Student and I want to edit a row in the table
> name students through Ajax after clicking a button, what is the correct
> way to do this? Also, please note I want to edit value inside one column
> followers
>
> Here is the js code:
>
>     $(document).ready(function(){
>     $('.clap').click(function(){
>         var dataString = "student[followers]=5";
>          $.ajax({
>                 type: "POST",
>                 url: "/students/",
>                 data: dataString,
>                 success: function() {
>                   window.alert('success');
>                   }
>               });
>     });
> });
>
> --
> 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+unsubscr...@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/d3c0ecb93ba57b861a36ec94b997f184%40ruby-forum.com
> .
> 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

-- 
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+unsubscr...@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/CAAREq_9O0t5b4pYSvCt1EKBCB%2BBr_jeQVQ9fLqZNzV7CdaFF0A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to