Quart python to get multiple content inside formdata using request.files

137 Views Asked by At

This is sample code to get multiple entries in formdata my python program received from react TS. But when i run the code it only repeat 1 time though there are more than 1 entries in my formdata. please kindly help. thank you guys.

for name, uploaded_file in (await request.files).items(): #print(file.filename)

i tried to get multiple entries in formdata my python program received from react TS

0

There are 0 best solutions below