- 没有运营数据?
小程序中有(全国、湖北省-黄石市-阳新县)运营数据,客服驳回说没有数据,麻烦看一下,提供一下手机型号
2020-01-17 - 小程序图片上传安全问题?
小程序图片上传安全,这个借口能不能直接在小程序端直接调用 [图片]
2019-09-25 - scroll-view真机调试时候苹果无法滚动?
//真机调试的时候安卓可以滚动,苹果无法滚动,个人感觉是苹果获取高度已经超过了内容的高度,这种要怎么解决 .wxml <scroll-view class="topheight" style="height:{{scrollHeight}}px;overflow:auto" scroll-y='true' bindscrolltoupper="scrolltoupper" bindscrolltolower="scrolltolower"> 内容 </scroll-view> <view class="bottom-down"> //底部导航栏 </view> .js var that = this; let Height = wx.getSystemInfoSync().windowHeight; let Width = wx.getSystemInfoSync().windowWidth; const query = wx.createSelectorQuery() query.select('.bottom-down').boundingClientRect(); query.exec((res) => { that.setData({ scrollHeight: Height - res[0].height - 1 }) });
2019-09-20