Skip to content Skip to sidebar Skip to footer

.serialize() An Array Of Variables In Javascript

I have a list of variables available to me and I want to send it via $.ajax post. What format would I have to keep these in to use the function .serialize? I keep getting this erro

Solution 1:

.serialize is for form elements:

Encode a set of form elements as a string for submission.

The $.ajax documentation says for the data option:

Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests. See processData option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the traditional setting (described below).

So all you need to do is passing an object. For example:

$.ajax({type:"post",url:theurl,data: {                             //<--justpassanobjectattachmentId:attachmentID,
          action:'rename',
          //...
    },dataType:'json',success:reCreateTree});

Solution 2:

It seems you're used to the PHP style of array's (associated arrays). In Javascript, objects are basically the same thing (though can be MUCH more complicated).

So if you are trying to create an array like this in php it would be

$array = array(
    "foo" => "bar",
    "bar" => "foo",
);

in Javascript using an object instead of an array it would be

var arr = {
    foo: "bar",
    bar: "foo"
}

Post a Comment for ".serialize() An Array Of Variables In Javascript"