Hello.
I just register and try the service and have a question about Groups.
With the standard JS uploader ( by the way, Very Good Work ), if I set data-multiple=“false”, the field is populated with value like:
https://ucarecdn.com/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/
The url is public, can be reached without an API call, and contain a UUID for the file, it is straightforward.
With data-multiple=“true” the field is populated with value like:
https://ucarecdn.com/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxxx~1/
This is UUID for Group, I must execute the API call:
to parse the JSON result to get individual files UUIDs.
My question is - is it possible somehow, for the field to be populated with the individual files UUIDs separated by a comma for example?
If this is not possible, I must implement some sort of backend logic to extract these individual files - before the user send the form ( with hooks ) or after sending it, maybe even to write a job in the queue, trigger an event, or cronjob.
All of these solutions require additional time and it is possible for the user to not see the uploaded images after the form is submitted.
Give me your opinion about your experience with best practices in cases like this?