2017-08-17 73 views
0

我必須在我的項目中上傳文件。但是當我取消對話框時,以前上傳的文件正在消失。即使取消對話框後,是否有辦法維持第一個選定的文件。grails - 在gsp中上傳文件(點擊取消後消失)

這裏是我的代碼

<div class="input-field" id="uploadAuditReport"> 
    <label class="active">Upload Audit Report *</label> 
    <input type="file" id="reportFileData" name="reportFileData" required-error="Please upload a file" class="m-b-10 card-panel" style="bottom-border: dotted 1px" pattern="^.*(xls|xlsx|doc|pdf|docx|ods|jpg|jpeg|png|XLS|XLSX|DOC|PDF|DOCX|ODS|JPG|JPEG|PNG)$" pattern-error="File must be in xls, xlsx, doc, pdf, docx, ods, jpg/ jpeg, and png format" required="" filesize="30000000" filesize-error="File must not exceed a file size of 30 MB." >          
</div> 

回答