I have a simple iron-ajax element like this:
<iron-ajax id="ajax_email"></iron-ajax>
Then later in javascript I add some parameters to the request, one of them being an array:
var request = this.$$("#ajax_email");
request.params.to = "[email protected]";
request.params.subject = "a cool test";
request.params.content = "some content";
var cc = ["[email protected]", "[email protected]", "[email protected]"]
request.params.cc = cc;
request.generateRequest();
I have a simple PHP script that takes all these parameters, but can't figure out how to receive the "cc" array.
If I try with the GET method, iron-ajax generates the querystring like this:
[email protected]&[email protected]&[email protected]
instead of
url?cc[][email protected]&cc[][email protected]&cc[][email protected]
So, $_GET["cc"] in PHP only gets the last value of the array, "[email protected]".
When I try the POST method instead, $_POST is alway empty...
Anyone knows how to pass arrays with iron-ajax?
Ah well, I ended up doing a workaround with the PHP backend, to manually extract all the values from the query string. something like this: