Opened 15 years ago
Closed 15 years ago
#2726 closed enhancement (wontfix)
AJAX functions don't pass JSON with arrays properly
Reported by: | lukebrookhart | Owned by: | flesler |
---|---|---|---|
Priority: | minor | Milestone: | 1.2.4 |
Component: | ajax | Version: | 1.2.3 |
Keywords: | JSON arrays | Cc: | [email protected]…; [email protected]… |
Blocked by: | Blocking: |
Description
With all the AJAX functions (ie. .load, .post .get, etc) the JSON data that is sent to the server does not pass the array data properly. Due to the way arrays are passed to web servers, the names of the array variables need to be concatenated with "[]" to signal to the server that there is more than one value.
Example:
$('#property_search_results').load('search.php', {towns:['Apalachin','Owego','Binghamton']});
Web servers will first define the "town" variable with "Apalachin". It will then immediately overwrite "Apalachin" with "Owego", and then overwrite "Owego" with "Binghamton".
If we change the variable name to towns[] within the AJAX functions, web servers will know that this is an array of values and all will be well. This is same way that web browsers pass an array of values for one variable in forms and query strings.
Attachments (1)
Change History (3)
comment:1 Changed 15 years ago by
Component: | core → ajax |
---|---|
Owner: | set to flesler |
Priority: | major → minor |
Status: | new → assigned |
Type: | bug → enhancement |
Changed 15 years ago by
Attachment: | param.diff added |
---|
This is the change, but I think I won't be able to apply it as many people/servers don't expect this to happen.
comment:2 Changed 15 years ago by
Resolution: | → wontfix |
---|---|
Status: | assigned → closed |
According to this, the index/key shouldn't be specified.
So I'll have to close this, you can apply the diff to your file if you want, or you can just use:
{ 'towns[]':['Apalachin','Owego','Binghamton'] }
That should work as expected.
Will look into it.