我在 grails 中重定向上传的图像,如下所示:
控制器:
def upload() {
def f = request.getFile('myFile')
if (f == null | f.empty) {
flash.default = "file cannot be empty"
errors.getFieldError("cannot be empty")
return
}
def fName = f.getOriginalFilename()
def picture = new Picture(orgName: fName, urlOrg: "http://localhost/"+fName)
f.transferTo(new File('/Users/sagarmichael/Desktop/photoUpload/'+fName))
println("saved")
redirect(action: 'test', params: [url1:picture.urlOrg] )
}
def test(){
System.out.println(params.url1)
[url1:params.url1]
}
我希望这会将 url1 发送到我的名为 test 的视图中,我有这个:
<img src="${url1}"/>
我希望这会在屏幕上显示图像。我正确设置了 apache2 配置,当我去
http://localhost/<imageName>
它工作正常。
我在浏览器的 url 栏中得到的是:
http://localhost:8080/FYP/profile/test?url1=http%3A%2F%2Flocalhost%2Flonglogo3.png
有任何想法吗?