作者:じ☆ve宝贝
发布时间:2016-06-21T18:16:25
jfinal增加文件上传功能后其他参数值为null!在表单中增加enctype="multipart/form-data"后,前台往后台传参为null的情况?
解决办法:
在后台接受参数前必须先处理文件上传
UploadFile uploadFile = getFile();
if(null != uploadFile){
String directory = uploadFile.getSaveDirectory();
String name = uploadFile.getFileName();
String path = "/"+ UUID.randomUUID().toString().replaceAll("-", "") + name.substring(name.lastIndexOf("."), name.length());
uploadFile.getFile().renameTo(new File(directory + path));
}
News news = getModel(News.class);
news.update();