When I use the "multiple" attribute, I cannot get it to work:
<input type="file" id="files" name="files[]" multiple />
The body of the controller action method:
request.getFileNames().each {
println it
}
The problem is that this iteration returns only one file. Can someone help me get all the downloaded files? (I am using grails 2.0.3)
source
share