Answers for "rails ajax"

0

$.ajax how to read data vale in controller in rails

$.ajax({
  type:"GET",
  url:"books/test",
  dataType:"json",
  data: {some_parameter: 'hello'},
  success:function(result){
    alert(result);
  }
})
Posted by: Guest on May-06-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language