vote up 1 vote down star

Hello, I have the following JSON object:

new Ajax.Request(url, {
   method: 'post',
   contentType: "application/x-www-form-urlencoded",
   parameters: {
          "javax.faces.ViewState": encodedViewState,
          "client-id": options._clientId,
          "component-value": options._componentValue
   }
});

Now, I would like to be able to append to the "Parameters" object programattically, but I am unsure of how I would actually do this.

flag

3 Answers

vote up 1 vote down

Assume that the JSON object is named as obj in the Ajax.Request Javascript function. You could now add to the parameters object like this:

obj['parameters']['someproperty'] = 'somevalue';

Hope this helps

link|flag
vote up 1 vote down

You can't append to it after you call new, because Prototype automatically sends and starts processing the Ajax request upon creation, instead do something like this if you need to alter the parameters object:

var params = {
      "javax.faces.ViewState": encodedViewState,
      "client-id": options._clientId,
      "component-value": options._componentValue
      // Either add your additional properties here as:
      // propertyName : propertyValue
};
// Or add your properties here as:
// params.propertyName = propertyValue;
new Ajax.Request(url, {

method: 'post',

contentType: "application/x-www-form-urlencoded",

parameters: params
});
link|flag
vote up 4 vote down

you can simply assign to it. But you might want to do that before creating the request.

var parameters = {
      "javax.faces.ViewState": encodedViewState,
      "client-id": options._clientId,
      "component-value": options._componentValue
}
parameters.foo = 'bar';

var myAjax = new Ajax.Request(url, {
    method: 'post',
    contentType: "application/x-www-form-urlencoded",
    parameters: parameters
});
link|flag
just a note: another way to do the same thing is parameters["foo"] = "bar". I prefer this way because parameters.foo does not exist (yet), and it feels very "violating" to do the assignment that way :) – harshath.jr May 26 at 6:01
1  
except that it's exactly the same thing, and your method requires interpretation at run-time as opposed to parse-time (meaning a preparsed function can't work off the interpreted value) err.. did that make sense? – Luke Schafer May 26 at 6:04

Your Answer

Get an OpenID
or

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