我正在尝试使用GRAILS
通过REST上传文件curl -X POST -H "Cache-Control: no-cache" -H "Postman-Token: d5d7aef8-3964-311b-8b64-4a7a82c52323" -H "Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW" -F "file1=myfile.jpg" -F "fname=swateek" -F "lname=jena" 'http://localhost:8081/sampleFileREST/document/upload'
以下是我的控制器的样子:
class DocumentController extends RestfulController<Document> {
static responseFormats = ['json', 'xml']
def upload() {
def fileLocation="<xml>empty</xml>"
def file = request.getParameter('file1')
def f1 = request.getParameter('fname')
def f2 = "<abc>"+request.getParameter('lname')+"</abc>"
def params = "gf"
if(file.empty) {
fileLocation = "<xml>"+"File cannot be empty"+"</xml><allprm>"+params+"</allprm>"
} else {
def documentInstance = new Document()
documentInstance.filename = file.originalFilename
documentInstance.fullPath = grailsApplication.config.uploadFolder + documentInstance.filename
file.transferTo(new File(documentInstance.fullPath))
documentInstance.save()
fileLocation = "<xml>"+documentInstance.fullPath+"</xml>"
}
/* return "File uploaded to: "+documentInstance.fullPath */
render(text: fileLocation, contentType: "text/xml", encoding: "UTF-8")
}
}
我能够访问请求的参数,除了我在请求中发送的文件以外的任何内容。
无法弄清楚这里有什么问题。
更新
我曾使用.getParameter()来获取文件。这是不正确的,正确的方法如下:
request.getFile('<filename>') // without the <>
这可能会导致IntelliJ中出现“未找到符号”或“无法解析方法”的错误,请按照以下答案中的步骤进行操作。
答案 0 :(得分:0)
该死的我正在使用的IDE, IntelliJ 。
此外,这段代码在获取文件时:
def file = request.getParameter('file1')
应替换为
def file = request.getFile('file1')
现在,之前,当我使用request.getFile()方法时,我得到了一个&#34;未找到符号&#34;错误,但未能执行请求。
<强>解决方案强>:
如果这不起作用,则在此答案中提到另一种方式: IntelliJ IDEA JDK configuration on Mac OS