- getApp().globalData数据不一致
[图片] [图片] 打印出来拿到的getApp().globalData不一致,上面是0,下面是1,单独打印又是0,这是什么鬼!???
2017-09-11 - iphone6上小程序没有动画效果
测试真机iphone6上小程序写的动画效果wx.createAnimation({}) 没有效果,iphone5s,6s,7s都有,为什么6没有?
2017-08-22 - 小程序为什么注册app时候没等onLaunch里面的函数执行完就开始注册页面了?
onLaunch: function () {//生命周期函数--监听小程序初始化 var that = this; //先验证微信自身登陆态是否过期 wx.checkSession({ success: function (res) { //从缓存获取user_session var user_session = wx.getStorageSync('user_session'); if (user_session == '') { //取不到user_session需要登陆 that.login(); } else { that.check(user_session); //取到user_session需要验证是否有效 } }, fail: function (finfo) { //wx session 到期,需要重新登陆 that.login() } }) console.log(111111111111) }, [图片]
2017-06-22