- scroll-view enhanced属性无效?
scroll-view 设置属性 enhanced="{{true}}" binddragstart="onStart" bindd:ragend="onEnd" 。 滚动的时候onStart onEnd方法监听无效。 scroll-view scroll-y style="width: 100%; height: 400px;" enhanced="{{true}}" refresher-enabled="{{true}}" refresher-threshold="{{80}}" refresher-default-style="none" refresher-background="lightgreen" bindrefresherpulling="{{refresh.onPulling}}" binddragstart="onStart" bindd:ragend="onEnd" > onStart(e){ console.log('滚动开始') }, onEnd(e){ console.log('滚动结束') },
2020-08-19 - 小程序wx.getSystemInfo()Api获取的屏幕像素比不对?
模拟器用的是ios的6/7/8plus: 这是调用代码: wx.getSystemInfo({ success(res) { //rpx:px console.log("pixelRatio:",res.pixelRatio); console.log("screenWidth:",res.screenWidth); console.log("windowWidth:",res.windowWidth); console.log("brand:",res.brand); }, 这是返回结果: pixelRatio: 3 screenWidth: 414 windowWidth: 414 brand: devtools 这是文档里的对rpx的介绍: rpx(responsive pixel): 可以根据屏幕宽度进行自适应。规定屏幕宽为750rpx。 那么 414px*3 = 1242rpx; 如果要等于 750rpx 那 pixelRatio 应该是 750/414 = 1.811 现在请问这是小程序的问题还是我有哪里搞错了?希望有知晓的朋友解惑一下,谢谢各位。
2020-06-08 - 小程序的开放类目的政务民生的环保与交通违法需要什么授权函?需要去哪些部门盖章?
请问一下小程序的开放类目的政务民生的环保与交通违法需要什么授权函?需要去哪些部门盖章?
2020-04-22