我正在尝试在我的 gsp 中上传 grails 中的文件,我有:
<g:form id="update" url="[action: 'updateStatus',]">
<g:textArea name="message" value="" cols="3" rows="1"/><br/>
<g:textField id="tagField" name="tag" value=""/><br/>
<input id="inputField" type="file" name="myFile" enctype="multipart/form-data" />
<g:submitButton name="Update Status"/>
</g:form>
在我的控制器中,我有:
def updateStatus(String message) {
if (params.myFile){
def f = request.getFile('myFile')
}
请求获取文件失败并出现以下错误:
No signature of method: org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestWrapper.getFile() is applicable for argument types: (java.lang.String) values: [myFile]
任何想法为什么这是我所拥有的并且正在我的其他控制器中使用 getFile ,它工作正常。