On Client I have form with next structure:
{
id: [Number],
imgs: [object FileList],
title: [String],
// ...
}
After transformation this object in FormData I send him on Server. On Server I use multiparty without streaming process. Example: handler code
In result I receive this console: console
Files object is empty. Then I tried to recurse: recurse but it didn't solve my problem.
How I can processing this [objecty FileList] in multiparty?