概述
我刚刚学习java做后台,Spring框架不敢拿出来嘚瑟,只能稳稳当当用Servlet写后台,我请求后台获取我当前页面所需要的图片列表,前台接收到的数据是json数组是对象列表,然而我这里需要的图片预览是String类型的数组所以给我报错。
所以获取到的json数据得在前台转化一下:定义一个全局的images:[]数组,然后使用循环获取值放入数组中,这样子就转化好了
图片就预览成功了
刚刚接触微信小程序,遇到各种bug,踩各种坑,但是还是解决了这个问题我感觉很开心,所以和大家分享一下,希望和我一样遇到这种坑的小伙伴们,能有个解决的办法。
附一下我的后台代码
public class ImageByIdServlet extends HttpServlet {
private ThingsService thingsservice =new ThingsService();
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
request.setCharacterEncoding("utf-8");
response.setContentType("text/html;charset=UTF-8");
int postId=Integer.valueOf(request.getParameter("postId")).intValue();
System.out.println("99"+postId);
List<ImageUrl> images=null;
JSONArray jsonarr= new JSONArray();
PrintWriter out=response.getWriter();
try {
images=thingsservice.findimageById(postId);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
for (ImageUrl imageUrl : images) {
try {
JSONObject json =new JSONObject();
json.put("headImgSrc",imageUrl.getHeadImgSrc());
jsonarr.put(json);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
out.print(jsonarr.toString());
}
}
最后
以上就是勤恳小霸王为你收集整理的微信小程序做图片预览遇到的bug的全部内容,希望文章能够帮你解决微信小程序做图片预览遇到的bug所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复