个人案例
- 一键制作专属头像
给图片加上文字,以及给微信头像添加挂件
送你一棵圣诞树扫码体验
有报错吗?还是能发布,小程序未更新?更新机制:https://developers.weixin.qq.com/miniprogram/dev/framework/runtime/update-mechanism.html
小程序审核成功发布不上去?wxc33cafeab9ce0760
2021-08-11可以发下出现问题的具体机型、微信版本号、基础库版本以及代码片段看下,代码片段:https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
video-swiper里视频为什么在苹果手机播放不了?video-swiper里视频滑动功能,安卓手机没有问题,但是苹果手机视频无法播放?望解答。。。
2021-08-10小程序名称发一下,最好把出现问题的手机型号,以及微信使用的版本也发出来,看下
苹果手机 无法打开小程序?客户反馈苹果手机无法打开小程序,安卓手机可以正常访问
2021-08-10getUserInfo 不支持获取用户信息,看下 getUserProfile:https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/wx.getUserProfile.html
使用getUserProfile授权后点击编译,在app.js的 onLaunch中,获取不到授权?getUserProfile(e) { wx.getUserProfile({ desc: '用于豆瓣电影小程序的授权', success: (res) => { this.setData({ userInfo: res.userInfo }) // 将用户信息存储到全局数据中 app.userInfo = res.userInfo } }) }, app.js文件 App({ userInfo: null, onLaunch:function(options) { //当用户启动时获取用户信息 wx.getSetting({ success: (res) => { // 判断是否授权用户信息 console.log(res) if(res.authSetting['scope.userInfo']) { wx.getUserInfo({ success: res => { console.log(res) this.userInfo = res.userInfo // 由于getUserInfo是异步请求,可能会在onload之后才返回数据 } }) } } }) }, }) 结果如下图,没有显示已授权的信息 [图片]
2021-08-10// 把 this.data.arrowAnimation.translateY 改成 animation.translateY onReady(){ var animation = wx.createAnimation({ delay: 0, timingFunction:"linear", duration:1500, success(res){ console.log("dzp arrowAnimation",res); } }) this.data.arrowAnimation=animation var animationInterNum=setInterval(function(){ console.log("dzp arrowAnimation setInterval:",animation); animation.translateY(-30).step().translateY(0).step(); this.setData({ arrowAnimation:animation.export(), }) }.bind(this),1500) },
定义重复执行动画,动画只执行一次就报错Page({ data:{ arrowAnimation:{}, }, onReady(){ var animation = wx.createAnimation({ delay: 0, timingFunction:"linear", duration:1500, success(res){ console.log("dzp arrowAnimation",res); } }) this.data.arrowAnimation=animation var animationInterNum=setInterval(function(){ // this.arrowAnimation.opacity(0).step().opacity(1).step() console.log("dzp arrowAnimation setInterval",this.data.arrowAnimation); this.data.arrowAnimation.translateY(-30).step().translateY(0).step(); this.setData({ arrowAnimation:animation.export(), }) }.bind(this),1500) }, bug 描述:151VM211 WAService.js:2 TypeError: this.data.arrowAnimation.translateY is not a function
2021-08-10跟域名配置无关,有没有报错看下控制台。要不直接贴个代码看看
为什么if语句没有按逻辑执行,测试的时候直接跳了下一步?在使用个人申请的临时开发测试号时候,使用了手机绑定API,会正常弹出授权框,授权后才能进行下一步。但是换用了企业APPID(目前request域名暂无配置),在做测试的时候并不会执行这if语句,而是直接跳到了下一步。这是因为request域名配置的问题吗?
2021-08-10报错404,一般是指网页未找到。大概率是你的 url 有问题。就是提示404前面一串黑色的文字有问题。看下是不是写错了,或者本来访问就报错。
求救,求大神解救这个错误?[图片]
2021-08-09无法获取。看能否根据时间来做一个不准确的假判断。比如用户触发了分享,在返回页面时判断超过多少时间就认为他分享了,时间太短就判断没有分享。
用户在微信公众号分享后, 微信会回调吗?https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html
2021-08-09使用适配微信小程序的 echarts:https://github.com/ecomfe/echarts-for-weixin
在微信小程序开发过程中,如何绘制折线图?如题,请问如何绘制折线图
2021-08-09有报错吗?可以把出现问题的手机型号、系统版本号以及基础版本库发一下,以及提供下能够复现问题的代码片段,方便查找问题,代码片段:https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
最新版本8.0.9和8.0.10扫描不到蓝牙设备https://developers.weixin.qq.com/miniprogram/dev/framework/device/bluetooth.html 最新版本8.0.9和8.0.10扫描不到蓝牙设备
2021-08-09