How to send array in Httpservice in Adobe Flex3
|
|
|
|
|
|
|
If it is a simple array, you could send it as a comma separated string.
|
||
|
|
|
|
It really depends what is the back end technology you're using. If you're sending it to PHP you could try:
PHP will generate an array for you. AFAIR this works fine in Rails as well. |
||
|
|
|
|
if it is a simple string array, you can join it with a well know separator char, and on the other site, split the string with the same separator back to an array. |
||
|
|
|
|
I am not quite sure what you mean by sending an array to a httpservice. If you mean to send an array to a httpservice with the same field name, you can pass an array as field value.
The HTTPService will convert this t0 the url parameters: facet=true&q=stackoverflow&facet%2Efield=categories&facet%2Efield=organisation&rows=0 Hope this helps! Added for more clarity. When there is only 1 argument in the array, do not pass the fields as an array. For some reason, flex will not send this to the http service |
||
|
|
