Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access posted json data from ajax in rails controller

I have made an ajax post request for json data and I want to access that data in the rails controller so how can I access the data.

Here is how I posted the data using ajax

jQuery.ajax({
          url: 'main/getlocation',
          data: "{latitude:" + latitude + ",longitude:" + longitude + "}",
          dataType: 'json',
          type: "POST",
          success: function(data) {
            alert("Successful");
          },
          failure: function() {
            alert("Unsuccessful");
          }
        }); 

How can I access the latitude and longitude data from the rails controller. I cannot access the data using the normal params[:latitude] and params[:longitude]. What should I use?

like image 527
user745089 Avatar asked Jul 20 '11 13:07

user745089


1 Answers

I guess you have assigned longitude and latitude as variables which is accessible by your ajax request. If its not you will not get anything in the controller. Make sure the variables scope is right , then try this :

jQuery.ajax({
          url: 'main/getlocation',
          data: "latitude=" + latitude + "&longitude=" + longitude,
          type: "POST",
          success: function(data) {
            alert("Successful");
          },
          failure: function() {
            alert("Unsuccessful");
          }
        }); 

Now, I guess you can get the params[:longitude] and params[:latitude] in your controller.

like image 177
Prabesh Shrestha Avatar answered Sep 18 '22 18:09

Prabesh Shrestha