- 关于onUnload 与 onHide触发问题?
小程序 点击胶囊关闭按钮时会触发onHide么? 小程序 点击胶囊关闭按钮挂载到后台直到小程序卸载会触发本页面的onUnload 么?
2019-08-30 - scroll-view 这个组件滚动到顶部下拉会出现空白缓冲区怎么让它取消缓冲?
<scroll-view class="contaioner" scroll-y bindscroll="scroll" scroll-top="{{top}}" disableScroll="{{false}}"> <view class="item">{{top}}</view> <view class="item" style="background:blue">{{top}}</view> <view class="item" style="background:pink">{{top}}</view> </scroll-view> .contaioner{ width: 100%; height: 100vh; background-color: red; } .item{ width: 100%; height: 100vh; background-color: green; }
2019-08-08 - 需求是防抖音 利用cover-view做评论弹层怎么实现上拉加载更多评论?
cover-view cover-view cover-view cover-view 需求是防抖音 利用cover-view做评论弹层怎么实现上拉加载更多评论?或者其他办法遮盖video标签。
2019-07-31 - 小程序怎么把分享函数写在构造器里
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo Component({ /** * 组件的属性列表 */ properties: { current: { value: 1, type: String }, shopList:{ type:Array } }, /** * 组件的初始数据 */ data: { }, pageLifetimes: { onShareAppMessage(e) { if (e.from === "button") { return { imageUrl: this.data.shopList[e.target.dataset.id * 1].good_href, path: '/pages/goodsDetail/goodsDetail?goods=' + this.data.goods, // 路径,传递参数到指定页面。 success: function (res) { // 转发成功 wx.showToast({ title: "分享成功", icon: 'success', duration: 2000 }) }, } } }, }, /** * 组件的方法列表 */ methods: { goods(e){ this.setData({ goods: e.currentTarget.dataset.goods }) wx.navigateTo({ url: "../goodsDetail/goodsDetail?goods=" + e.currentTarget.dataset.goods }) }, }, }) 小程序 怎么把分享函数写在构造器里 不写在构造器里会造成传参未定义 return{ imageUrl属性失效 }
2019-04-11 - 小程序跳转
小程序跳转 安卓收不到传的值
2018-11-22 - 小程序跳转
wx.navigateToMiniProgram({ appId: 'wx6**********92a', envVersion: "develop", }) 小程序A跳转到B 导致B小程序的缓存清空,安卓机问题
2018-11-19 - 小程序显示问题
问题小程序:及及在身边小程序 我的页面其子页面 打开之后锁屏,解锁之后页面消失变为空页面,滑动一下页面恢复正常 部分安卓机出现的问题,具体机型小米note5a。[图片] [图片]
2018-11-16 - input超过三个提交按钮就不好使
为什么input超过三个提交按钮就不好使了??????????????????????????????????????????????????????????? <form bindsubmit='sub'> <view class='cont'> <text>转入手机号:</text> <input type='text' name='phone'></input> </view> <view class='cont'> <text>转出金额:</text> <input type='text' name='gold'></input> </view> <view class='cont'> <text>您的名字:</text> <input type='text' name='name'></input> </view> <view class='cont'> <text>您的手机号:</text> <input type='text' name='phones'></input> </view> <view> <button form-type='submit' size='mini' type='primary'>转出</button> </view> </form>
2018-11-07