Could you guys help me with this?
When I make post request which contains an array arg:
curl --location --request POST 'http://127.0.0.1:8080/push' \
--form 'names[0]="name0"' \
--form 'names[1]="name1"' \
--form 'names[2]="name2"'
The request.form is as below:
I thought the request.form should be like this:
{
'names': ['name0', 'name1', 'name2']
}
Thanks!