On Thu, 27 Feb 2014 08:15:17 GMT, Sönke Ludwig wrote:
On Wed, 26 Feb 2014 23:32:20 GMT, Colin Grogan wrote:
Looking at the file that actually gets through, its always the last one I select. My guess is that because req.files is an array[string], and the key is the same in each case, the array[string] is just over-ridden every time. Would this make sense?
Yes, I guess that's exactly the case. I'll change the type of
req.files
to use aDictionaryList!(FilePart, true)
instead of an associative array (likereq.form
andreq.query
already do).
Great, thanks!