- 新疆地区人脸核身姓名带特殊符号 · ,会报姓名或者证件号错误?
姓名例如: 迪丽热巴·牙森
2021-10-08 - 小程序的人脸核身是否收费?
在微信公众号平台 人脸核身那里看到有计费统计,想咨询一下官方是否收费[图片]
2021-09-18 - 文档错别字
https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/Mini_Programs/code/commit.html “第三方平台需要先将草稿添加到代码模板库,或者中代码模板库中选取某个代码模板 ” 这句 “中”改为“从”才对吧
2020-06-12 - 动画Animation连续调用多个step(),在最新版ios13.4.1下动画和其他机型表现不一致
onLoad: function(options) { var th=this; setTimeout(function(){ var animation = wx.createAnimation({ duration: 500, timingFunction: "linear", delay: 0, transformOrigin: "50% 50%", }) animation.translate(154, 0).step(); animation.translate(200,0).step(); animation.translate(300,0).step(); //导出动画数据传递给组件的animation属性。 th.setData({ animationData: animation.export(), }) },2000) } <view style="width:100px;height:100px;background:pink;position:absolute;top:0;left:0" animation="{{animationData}}"></view> 如上述代码,页面加载2秒后,执行一段位移动画,在ios13.4.1下,每一个step会重新回到起点重新开始执行,造成动画不连贯,其他低版本ios和安卓机型和微信开发者工具未发现此异常
2020-05-19