Skip to content

Commit

Permalink
解决多图片轮播预览数据量大的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
klboke committed Mar 8, 2018
1 parent c78bf06 commit 378920b
Showing 1 changed file with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,20 @@ public String picturesPreview(String urls, String currentUrl, Model model, HttpS
return "picture";
}


@RequestMapping(value = "picturesPreview", method = RequestMethod.POST)
public String picturesPreview(Model model, HttpServletRequest req) throws UnsupportedEncodingException {
String urls = req.getParameter("urls");
String currentUrl = req.getParameter("currentUrl");
// 路径转码
String decodedUrl = URLDecoder.decode(urls, "utf-8");
String decodedCurrentUrl = URLDecoder.decode(currentUrl, "utf-8");
// 抽取文件并返回文件列表
String[] imgs = decodedUrl.split("\\|");
List imgurls = Arrays.asList(imgs);
model.addAttribute("imgurls", imgurls);
model.addAttribute("currentUrl",decodedCurrentUrl);
return "picture";
}
/**
* 根据url获取文件内容
* 当pdfjs读取存在跨域问题的文件时将通过此接口读取
Expand Down

0 comments on commit 378920b

Please sign in to comment.