该接入的都接入了,还提示不通过,也不指出到底是那一块需要改?
已经接入了小程序内容安全API,为啥还不让通过?小程序已经接入了内容安全API,结果还是提示小程序内容不符合规则; [图片]
2019-08-14请问解决了吗,我也遇到了
调用微信接口获取带参二维码生成图片打不开,图片损坏String access_token = this.getAccessTokenString(); //封装参数 Map<String, Object> parMap = new HashMap<String, Object>(); parMap.put("medicalOrgCode",medicalOrgCode); parMap.put("departmentCode",departmentCode); Gson gson = new Gson(); String scene = gson.toJson(parMap);//带参 if(width==null||width==0){ width = 430;//默认 } String url = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token="+access_token; Map<String,Object> param = new HashMap<>(); param.put("scene", parMap); param.put("page", "pages/index/index"); param.put("width", width); param.put("auto_color", false); Map<String,Object> line_color1 = new HashMap<>(); line_color1.put("r", 0); line_color1.put("g", 0); line_color1.put("b", 0); param.put("line_color", line_color); System.out.println("调用生成微信URL接口传参:" + param); MultiValueMap<String, String> headers = new LinkedMultiValueMap<>(); HttpEntity requestEntity = new HttpEntity(param, headers); RestTemplate rest = new RestTemplate(); ResponseEntity<byte[]> entity = rest.exchange(url, HttpMethod.POST, requestEntity, byte[].class, new Object[0]); System.out.println("调用小程序生成微信永久小程序码URL接口返回结果:" + entity.getBody()); byte[] result = entity.getBody(); System.out.println(Base64.encodeBase64String(result)); InputStream instreams = new ByteArrayInputStream(result); String uploadSysUrl = "F:\\upload"+"/"; saveToImgByInputStream(instreams, uploadSysUrl, id+".jpg"); //保存图片到本地(代码没问题) String resUrl = ossService.uploadObject(instreams, "wxaqrcode/", id, FileUtils.getFileExt(".jpg")); //上传到阿里云 (代码没问题) 求解决
2019-05-16请问解决了没?
scroll-view在加载比较多图片时快速滚动会出现白屏闪烁的问题- 当前 Bug 的表现(可附上截图) scroll-view在加载比较多图片时快速滚动会出现白屏闪烁的问题。 代码片段里请求动态加载了40张图片,在移动设备上快速滑动scroll-view会出现白屏一闪而过,并不是图片在加载,往回滑也会出现这个问题。
2019-04-03应该不是,几百个用户发布过表单,只有这两个人反映:提交后显示 提交成功,但是没有看到自己发布的数据,数据库也没有
小程序提交表单后显示成功,但后台数据库没有数据,为啥数据会丢失?有好几个用户反映小程序提交表单后显示成功,但后台数据库没有数据,一个华为P10,微信版本7.0.0,还有两个是苹果6s,微信版本7.0.3,苹果用户最开始提交了几篇都正常,但是最近都是提交了好多次都没有数据显示,什么原因导致表单值会丢失?怎么解决呢?
2019-01-26