获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
咋解决的
getwxacodeunlimit获得结果buffer如何处理,前端才能正常展示图片?// 获取小程序Accesstoken String url = String.format(path, id,se); String result = HttpUtil.get(url); String at= JSONUtil.parseObj(result).get("access_token").toString(); // 获取二维码 String codeUrl = String.format(qcode_url, at); Random rand = new Random(); int scene = rand.nextInt(90000000) + 10000000; Map map = new HashMap<>(); map.put("scene", scene); map.put("page", "pages/index/index"); map.put("check_path", false); map.put("env_version", "trial"); // 体验版 String r = HttpUtil.post(codeUrl, JSONUtil.toJsonStr(map));
2024-07-11