使用REST上传grails中的图像并保存图像的名称

时间:2016-02-24 12:05:19

标签: json api rest grails

我正在尝试使用本地计算机中的REST上传带有grails的图像。 这是控制器

.atBox {
  width: 500px;
}

.atBoxContainer:before, .atBoxContainer:after {
  content: '@';
  width: 0px;
  height: 0px;
  position: relative;
  display: inline-block;
}

.atBoxContainer:before {
  left: 10px;
}

.atBoxContainer:after {
  right: 22px;
}

这里是域类

class FileimgController {

def upload() {
    def image = request.getFile('myFile')
    image.transferTo(new File('/home/mehandihassan/workspace/imgfile/grails-app/assets/images/mehandi.'))
    response.sendError(200, 'Done')
}

def index() { }
}

越来越   错误:500内部服务器错误

我正在使用HTTPRequester

任何解决方案?

我们可以使用此代码上传图片吗? 代码参考 https://grails.org/single-page-documentation.html

我在这段代码中做了一些更改,我们可以将此代码用于REST API 要么 我应该使用任何插件上传图片或任何文件吗?

0 个答案:

没有答案