有人解决了?
使用wx.requestPayment付款成功后不调用success我的问题是新用户第一次使用这个小程序,付款后不回调success。同样的用户再使用就不会出现,哪怕 清除数据后再使用都不会出现了。但是有很多人都会是第一次使用的啊,这个问题怎么解决?完全不知道什么时候付款成功了啊。也没有回调函数。我直接使用的是 wx.requestPayment
2019-07-17wifi 我的也可以 ,用4g网络就不能了 我服务器开通ipv6了。不知道是不是有关系
小米手机网络请求慢小米手机网络请求慢 有谁遇到过吗 服务器只返回数据1 也很慢
2018-12-19....
小程序swiper组件黑屏后在开启屏幕无法正常使用小程序swiper组件锁屏后在开启屏幕无法正常使用 或者 在当前页面去别的页面 之后点击左上角返回 滑动也失效 化不动 - 提供一个最简复现 Demo wxhtml <swiper bindchange="productSwiperScroll" current="{{current}}" indicator-dots="{{swiperCon.indicatorDots}}" indicator-color="{{swiperCon.indicatorColor}}" indicator-active-color="{{swiperCon.indicatorActiveColor}}" autoplay="{{swiperCon.autoplay}}" interval="{{swiperCon.interval}}" duration="{{swiperCon.duration}}" > <block wx:for="{{swiperCon.imgUrls}}" wx:key="*this"> <swiper-item> <image src="{{item}}" class="slide-image" /> </swiper-item> </block> </swiper> js Page({ data: { swiperCon: { imgUrls: [ '../../images/sd_ico3.png', '../../images/sd_ico7.png' ], indicatorDots: true,//是否显示面板指示点 indicatorColor: "rgba(0, 0, 0, .3)",//指示点颜色 indicatorActiveColor: "#007aff",//当前选中的指示点颜色 autoplay: false,//是否自动切换 interval: 5000,//自动切换时间间隔 duration: 1000,//滑动动画时长 circular: true,//是否采用衔接滑动 }, current:0 }, productSwiperScroll:function (e) { console.log(e) // body... } , onLoad: function() { this.setData({ current:1 }) } })
2018-09-02