1.在加载前端js时,先加载下面方法
$('.edit').editable({
imageUploadURL: base.domain +"NewSoft/ziliaoceshi.do",
})
在上面的代码中你看到imageUploadURL,imageUploadURL其实就是你处理该插件上传图片的后台方法地址,而不是你的图片要上传到的路径。
下面贴出我的后台处理方法。
2.后台代码,这里是上传到OSS服务器的
@RequestMapping(value ="/ziliaoceshi",method = RequestMethod.POST)
public void ziliaoceshi(HttpServletRequest request,HttpServletResponse response,@RequestParam(value = "file") MultipartFile file) throws IOException {
request.setCharacterEncoding("UTF-8");
// 创建OSS连接
OSSClient ossClient = new OSSClient(ConfigInfo.getByProperties("ossjichu.endpoint"),
ConfigInfo.getByProperties("ossjichu.accessKeyId"),
ConfigInfo.getByProperties("ossjichu.accessKeySecret"));//创建OSSClient实例
String bucket = ConfigInfo.getByProperties("ossjichu.bucket");
//给上传的图片重命名
String adsPic = ConfigInfo.getByProperties("softWen")+new SimpleDateFormat
("yyyy-MM-dd").format(new Date())+Tools.createRandomID(5)+".jpg";
String picUrl="";//图片路径
try {
InputStream ips =file.getInputStream();
ossClient.putObject(bucket, adsPic, ips);
ossClient.shutdown();
ips.close();
picUrl="https://" + bucket + ".oss-cn-szfinance.aliyuncs.com/"+ adsPic;
Log.info("上传软文正文图片oss路径:"+picUrl);
} catch (IOException e) {
e.printStackTrace();
Log.info("上传软文正文图片失败:"+e);
}
Mapmap = new HashMap<>();
map.put("link",picUrl);
Gson gson=new Gson();
System.out.println("hashmap"+gson.toJson(map));
// response.setHeader("Access-Control-Allow-Origin", "*"); //解决跨域问题 一般不推荐使用 现在没找到好的解决方法
response.getWriter().write(gson.toJson(map));
}
后台返回格式一定是
{"link": "图片的绝对地址"}
即: