I'm playing with a restapi which give me a link to create an article. The form accepts article name, comments and images. I'm trying to use plupload to upload the images. It's working fine however due to the fact plupload makes a post per image I end up with i.e three articles if uploading three images.
I can manage to send each image with additional params, which in this case are "article name" and "comments". However I want one article with the three images and one article name and comment. Not three separate images with the same "article name" and "comment".
I hope my question is clear and someone has dealt with a similar situation and can point out some solutions. I want to create one mongo doc not three ;)
Thanks.