after ajax call how to call api index method rails code example
Example 1: $.ajax how to read data vale in controller in rails
def test
some_parameter = params[:some_parameter]
# do something with some_parameter and return the results
@test=books.find.last
respond_do |format|
format.html
format.json {render json: @test}
end
end
Example 2: $.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);
}
})