Re: multiple file upload

2014-08-03 Thread Herwig Hochleitner
I'm not sure how that would be handled with noir. With plain ring, you would use the multipart-params middleware [1] to get a :multipart-params submap in the request, in which all uploaded files are passed. At this point you can process them with (doseq [[param-name {:keys [filename content-type b

multiple file upload

2014-08-03 Thread Nick Macia
Hello all, sorry that this is a basic question. I've recently migrated over to clojure from php and some features of the language still remain obscure to me. I have been following "Web Development with Clojure" (solid intro) and have run into a wall with file uploads. The book provides the follo