vote up 2 vote down star
1

I am using above method & it works well with one parameter in url

e.g. Students/getstud/1 where controller/action/parameter format is applied.

now I have an action in Students controller that accepts two patameters and return json object.

so how do i post data with $.getJSON() using post method.

Similar methods are also acceptable.

point is to call action of controller with ajax.

flag

70% accept rate

2 Answers

vote up 7 vote down check

The $.getJSON() method does an HTTP GET and not POST. You need to use $.post()

$.post(url, dataToBeSent, function(data, textStatus) {
  //data contains the JSON object
  //textStatus contains the status: success, error, etc
}, "json");

In that call, dataToBeSent could be anything you want, although if are sending the contents of a an html form, you can use the serialize method to create the data for the POST from your form.

var dataToBeSent = $("form").serialize();
link|flag
vote up -1 vote down

thanks dude.. that really helped me :D

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.