- 时间处理由CST格式转成GMT格式时间在真机上无效
时间处理由CST格式转成GMT格式时间在真机上无效,代码如下 success(res) { // res.data 包含该记录的数据 console.log('首页收到的数据', res) var receive = res.data console.log('数组的长度',receive.length) for (var i = 0; i <receive.length; i++) { var creat_time =receive[i].creat_time; console.log('获取到的时间', creat_time) var dateStr = creat_time.split(" "); var strGMT = dateStr[0] + " " + dateStr[1] + " " + dateStr[2] + " " + dateStr[5] + " " + dateStr[3] + " GMT+0800"; var creat_time = new Date(Date.parse(strGMT)); console.log('转换后的时间',creat_time) var Month = creat_time.getMonth()+1 receive[i].creat_time = creat_time.getFullYear() + '年' + Month + '月' + creat_time.getDate()+'日'; console.log('设置的日期', receive[i].creat_time) } [图片]
2019-04-02 - 使用wx:for的多个view,绑定animation,怎么单独触发不同动画
使用wx:for的多个view,绑定animation,怎么单独触发不同动画?看了下以前别人提的问题的回答试了下还是不行啊,有没有大佬帮忙给个解决方案啊??新手求带。。。 ********************wxml***************************************************************************** <swiper previous-margin='60rpx' next-margin='60rpx'> <swiper-item wx:for="{{content}}"wx:key='{{item.creat_time}}'> <view class='main'> <!--正面的框 --> <view class="box b1" animation="{{animationMain}}" bindtap='rotateFn' data-id="1" > <image src=""></image> </view> <!--背面的框 --> <view class="box b2" animation="{{animationBack}}" bindtap='rotateFn' data-id="2"> <image src=""></image> </view> </view> </swiper-item> </swiper> *****************js*********************************************************************** Page({ data: { animationMain: null,//正面 animationBack: null,//背面 content: ["1", "2"] }, rotateFn(e) { var id = e.currentTarget.dataset.id this.animation_main = wx.createAnimation({ duration: 400, timingFunction: 'linear' }) this.animation_back = wx.createAnimation({ duration: 400, timingFunction: 'linear' }) // 点击正面 if (id == 1) { this.animation_main.rotateY(180).step() this.animation_back.rotateY(0).step() this.setData({ animationMain: this.animation_main.export(), animationBack: this.animation_back.export(), }) } // 点击背面 else { this.animation_main.rotateY(0).step() this.animation_back.rotateY(-180).step() this.setData({ animationMain: this.animation_main.export(), animationBack: this.animation_back.export(), }) } }, }) [图片]
2019-03-31 - 用户头像更换后原有的头像地址还能用吗?
通过getUserInfo获取 用户头像更换后原有的头像地址还能用吗? 是会更新?不变?失效?
2019-03-30 - 小程序云开发使用外部字体有好的方法吗?
想要全局使用一种字体,看过了一些转换字体写到css里的方法,但是感觉文件太大了,想用https引用的方法,但是我用的是云开发,没有域名,就不到怎么处理了 [图片]
2019-03-24 - 点击事件获取不到组件的值
我添加了点击事件获取不到这个组件的值,有人帮我看下原因吗? 这是index.wxml [图片] 这是点击后的log [图片]
2019-03-18 - 我在app.js获取了openid,在index.js里获取不了
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo 我在app.js获取了openid,在index.js里获取不了, 打印这个app.globalData能看到openid 这个就不行了app.globalData.openid 卡在这里一下午了,求解啊??????? index.js [图片] 这是打印出来的log [图片]
2019-03-17