@At("/edit/tools/imgupload")
@AdaptBy(type = UploadAdaptor.class, args = { "${app.root}/WEB-INF/tmp" })
public Result imgupload(@Param("file") TempFile file) {
String fileType = file.getMeta().getFileExtension();
List allowed = Arrays.asList(allowedImgType);
Collections.sort(allowed);
if (Collections.binarySearch(allowed, fileType) < 0) {
return Result.fail("不允许上传的图片类型 '" + fileType + "' ");
}
String key = OSSUtils.upload(file.getFile());
return Result.success().addData("key", key);
}
问答
我用了一个文本编辑器 但是上传图片的时候 接是file 是 null 这应该怎么处理
标签:
无
添加回复
请先登陆