19

There's got to be something I'm missing. I've tried using $.ajax() and $.post() to send a string to my ASP.NET MVC Controller, and while the Controller is being reached, the string is null when it gets there. So here is the post method I tried:

$.post("/Journal/SaveEntry", JSONstring);

And here is the ajax method I tried:

$.ajax({
    url: "/Journal/SaveEntry",
    type: "POST",
    data: JSONstring
});

Here is my Controller:

public void SaveEntry(string data)
{
    string somethingElse = data;
}

For background, I serialized a JSON object using JSON.stringify(), and this has been successful. I'm trying to send it to my Controller to Deserialize() it. But as I said, the string is arriving as null each time. Any ideas?

Thanks very much.

UPDATE: It was answered that my problem was that I was not using a key/value pair as a parameter to $.post(). So I tried this, but the string still arrived at the Controller as null:

$.post("/Journal/SaveEntry", { "jsonData": JSONstring });
tereško
  • 58,060
  • 25
  • 98
  • 150
Matt
  • 23,363
  • 39
  • 111
  • 152
  • in response to your update... Can you firebug it? what is actually being sent as the request to the server in your firebug console? – prodigitalson Dec 03 '09 at 22:05

6 Answers6

26

Answered. I did not have the variable names set correctly after my first Update. I changed the variable name in the Controller to jsonData, so my new Controller header looks like:

public void SaveEntry(string jsonData)

and my post action in JS looks like:

$.post("/Journal/SaveEntry", { jsonData: JSONstring });

JSONstring is a "stringified" (or "serialized") JSON object that I serialized by using the JSON plugin offered at json.org. So:

JSONstring = JSON.stringify(journalEntry);  // journalEntry is my JSON object

So the variable names in the $.post, and in the Controller method need to be the same name, or nothing will work. Good to know. Thanks for the answers.

Matt
  • 23,363
  • 39
  • 111
  • 152
5

Final Answer:

It seems that the variable names were not lining up in his post as i suggested in a comment after sorting out the data formatting issues (assuming that was also an issue.

Actually, make sure youre using the right key name that your serverside code is looking for as well as per Olek's example - ie. if youre code is looking for the variable data then you need to use data as your key. – prodigitalson 6 hours ago

@prodigitalson, that worked. The variable names weren't lining up. Will you post a second answer so I can accept it? Thanks. – Mega Matt 6 hours ago

So he needed to use a key/value pair, and make sure he was grabbing the right variable from the request on the server side.


the data argument has to be key value pair

$.post("/Journal/SaveEntry", {"JSONString": JSONstring});
prodigitalson
  • 60,050
  • 10
  • 100
  • 114
  • @prodigitalson, I agree that this is one option, but the documentation at http://docs.jquery.com/Ajax/jQuery.post says that it will accept key/value pairs (Map) or a String. So I'm left a little confused... – Matt Dec 03 '09 at 21:58
  • 1
    @Mega Matt: If you use a string i would assume it needs to be in standard query string format ie. JSONString=mySerializedDataStruct&var2=myothervar. In order to retrieve it on the server side the variable hase to have a name. – prodigitalson Dec 03 '09 at 22:00
  • @prodigitalson, tried using the method you answered above with no success. See my edit above. – Matt Dec 03 '09 at 22:03
  • yeah i jsut saw that and replied directly on your question... Can you use firebug to see whats being sent in the request? (or any other method thats going to see the actual http request thats sent before any server side filtering or anything.) – prodigitalson Dec 03 '09 at 22:06
  • @Mega Matt, see the bottom of this page: http://getfirebug.com/net.html It has sample screenshot and text explanation, I hope this will help. –  Dec 03 '09 at 22:27
  • @Olek: Thanks for shooting the link for firebug's net pane :-) – prodigitalson Dec 04 '09 at 04:37
2

It seems dataType is missed. You may also set contentType just in case. Would you try this version?

$.ajax({
    url: '/Journal/SaveEntry',
    type: 'POST',
    data: JSONstring,
    dataType: 'json',
    contentType: 'application/json; charset=utf-8'
});

Cheers.

  • @Oleksandr Bernatskyi, but should the dataType be 'json' when I'm sending a string over? This is not a JSON object, simply a string... – Matt Dec 03 '09 at 22:02
  • 1
    Oh, I see. @prodigitalson said the right thing actually - each variable should have a name. Maybe this will work? $.post("/Journal/SaveEntry", { "data": JSONstring }); –  Dec 03 '09 at 22:07
  • 1
    Actually, make sure youre using the right key name that your serverside code is looking for as well as per Olek's example - ie. if youre code is looking for the variable data then you need to use data as your key. – prodigitalson Dec 03 '09 at 22:11
  • @prodigitalson, that worked. The variable names weren't lining up. Will you post a second answer so I can accept it? Thanks. – Matt Dec 03 '09 at 22:34
  • @Mega Matt I jsut edited my original response to have the final answer - you werent clear though - what was your final format for sending the data was it: {var: value} or 'var=value' or some other format? – prodigitalson Dec 04 '09 at 04:45
1

Thanks for answer this solve my nightmare.

My grid

..
.Selectable()
.ClientEvents(events => events.OnRowSelected("onRowSelected"))
.Render();

<script type="text/javascript">
function onRowSelected(e) {
        id = e.row.cells[0].innerHTML;
        $.post("/<b>MyController</b>/GridSelectionCommand", { "id": id});
    }
</script>

my controller

public ActionResult GridSelectionCommand(string id)
{
     //Here i do what ever i need to do
}
Techie
  • 44,706
  • 42
  • 157
  • 243
ngwanevic
  • 13
  • 1
  • 2
0

The Way is here.

If you want specify

dataType: 'json'

Then use,

$('#ddlIssueType').change(function () {


            var dataResponse = { itemTypeId: $('#ddlItemType').val(), transactionType: this.value };

            $.ajax({
                type: 'POST',
                url: '@Url.Action("StoreLocationList", "../InventoryDailyTransaction")',
                data: { 'itemTypeId': $('#ddlItemType').val(), 'transactionType': this.value },
                dataType: 'json',
                cache: false,
                success: function (data) {
                    $('#ddlStoreLocation').get(0).options.length = 0;
                    $('#ddlStoreLocation').get(0).options[0] = new Option('--Select--', '');

                    $.map(data, function (item) {
                        $('#ddlStoreLocation').get(0).options[$('#ddlStoreLocation').get(0).options.length] = new Option(item.Display, item.Value);
                    });
                },
                error: function () {
                    alert("Connection Failed. Please Try Again");
                }
            });

If you do not specify

dataType: 'json'

Then use

$('#ddlItemType').change(function () {

        $.ajax({
            type: 'POST',
            url: '@Url.Action("IssueTypeList", "SalesDept")',
            data: { itemTypeId: this.value },
            cache: false,
            success: function (data) {
                $('#ddlIssueType').get(0).options.length = 0;
                $('#ddlIssueType').get(0).options[0] = new Option('--Select--', '');

                $.map(data, function (item) {
                    $('#ddlIssueType').get(0).options[$('#ddlIssueType').get(0).options.length] = new Option(item.Display, item.Value);
                });
            },
            error: function () {
                alert("Connection Failed. Please Try Again");
            }
        });

If you want specify

dataType: 'json' and contentType: 'application/json; charset=utf-8'

Then Use

$.ajax({
            type: 'POST',
            url: '@Url.Action("LoadAvailableSerialForItem", "../InventoryDailyTransaction")',
            data: "{'itemCode':'" + itemCode + "','storeLocation':'" + storeLocation + "'}",
            contentType: "application/json; charset=utf-8",
            dataType: 'json',
            cache: false,
            success: function (data) {

                $('#ddlAvailAbleItemSerials').get(0).options.length = 0;
                $('#ddlAvailAbleItemSerials').get(0).options[0] = new Option('--Select--', '');

                $.map(data, function (item) {
                    $('#ddlAvailAbleItemSerials').get(0).options[$('#ddlAvailAbleItemSerials').get(0).options.length] = new Option(item.Display, item.Value);
                });
            },
            error: function () {
                alert("Connection Failed. Please Try Again.");
            }
        });
Md. Nazrul Islam
  • 2,809
  • 26
  • 31
0

If you still can't get it to work, try checking the page URL you are calling the $.post from.

In my case I was calling this method from localhost:61965/Example and my code was:

$.post('Api/Example/New', { jsonData: jsonData });

Firefox sent this request to localhost:61965/Example/Api/Example/New, which is why my request didn't work.

Jakub Loksa
  • 537
  • 1
  • 14
  • 32