- stopPullDownRefresh IOS真机预览强制返回顶部,开发者工具却不会?
使用wx.stopPullDownRefresh停止上拉刷新后IOS真机预览会强制返回顶部,但开发者工具不会。 我在执行上拉刷新函数时要滚动到指定位置,不调用wx.stopPullDownRefresh就无法停止刷新,调用又会强制返回顶部,使得我的滚动处理失效,这是什么BUG?? 我尝试将滚动函数放置到wx.stopPullDownRefresh的success和complete函数中仍然无效! async onPullDownRefresh() { let current_index = parseInt(this.current_chapters[1].chapter_id.split('_')[1]); if(current_index === 1) { wx.showToast({ title: '已到达小说顶部', icon: 'none', }); } else { wx.showLoading({ title: '加载中', mask: true, }); let get_url = this.title_list[current_index-2].chapter_link; let get_index = current_index - 2; let get_chapter = await getchapter(get_index, get_url); //获取数据 this.current_chapters.unshift(get_chapter); this.current_chapters.pop(); this.$nextTick(async () => { let content_height = await get_height('content'); let chapter_id = 'chapter_' + (current_index-1); let chapter_height = await get_height(chapter_id); let scroll_top = content_height - this.screen_height; if(chapter_height > this.screen_height) { scroll_top = content_height - chapter_height - 40; } wx.pageScrollTo({ scrollTop: scroll_top, //滚动到指定距离 duration: 0, success: () => { wx.hideLoading(); } }); wx.stopPullDownRefresh(); //调用停止刷新函数,但会强制返回顶部,使得我上面的滚动失效 }) } },
2020-04-16 - 小程序网络返回数据在真机上未能解析为json,开发工具上是正常的。
wx.request发出一个请求,接口响应为 Content-Type: application/json;charset=UTF-8 的一个数据。 绝大部分情况下都是正常的respones.data为object类型,但是有一个,在真机上取到的respones.data 是string类型。 可能不是小程序的问题,但是这个情况很费解。 [代码]const app = getApp()[代码] [代码]Page({[代码][代码] [代码][代码]data: {[代码][代码] [代码][代码]msg: [代码][代码]''[代码][代码] [代码][代码]},[代码][代码] [代码][代码]onLoad: [代码][代码]function[代码] [代码]() {[代码][代码] [代码][代码]const self = [代码][代码]this[代码][代码] [代码][代码]wx.request({[代码][代码] [代码][代码]url: [代码][代码]'https://class.dxy.cn/japi/platform/122120007?id=3'[代码][代码],[代码][代码] [代码][代码]success: (res) => {[代码][代码] [代码][代码]console.log([代码][代码]'typeof res.data:'[代码][代码], [代码][代码]typeof[代码] [代码]res.data)[代码] // 调试工具为object 真机为string [代码] [代码][代码]this[代码][代码].setData({[代码][代码] [代码][代码]msg: [代码][代码]'typeof res.data:'[代码] [代码]+ [代码][代码]typeof[代码] [代码]res.data[代码][代码] [代码][代码]})[代码][代码] [代码][代码]}[代码][代码] [代码][代码]})[代码][代码] [代码][代码]},[代码][代码]})[代码] 小程序网络返回数据在真机上未能解析为json, 需要appid以便在真机上复现。 代码片段 wechatide://minicode/3hdmzEmZ6jZH
2018-05-24 - 微信小程序动态增加组件、删除组件(指定的)
微信小程序动态增加组件、删除组件(指定的)
2018-07-23 - RangeError: Maximum call stack size exce
[图片] 最近一直在报错,有没有好的方法能定位具体问题的? 那位大佬知道,麻烦告诉一下,谢谢
2019-07-10 - 报了个什么错误,求帮助!?
这是什么错误? 这个版本之前一直很稳定的,, undefined is not an object (evaluating 't.data.workerAddrList.length'); [Component] SetData Callback Error @ pages/toDoTasks/toDoTasks#(anonymous)
2019-10-21 - H5测试号 ,chooseInvoiceTitle:fail 获取失败
errMsg:"chooseInvoiceTitle :fail, the permission value is offline verifying" 求解是不是测试号没有获取抬头接口的权限? 知道的朋友麻烦告知下,谢谢! wx.config({ beta: true, debug: false, appId: data.appId, timestamp: data.timestamp, nonceStr: data.nonceStr, signature: data.signature, jsApiList: ['scanQRCode', 'chooseInvoiceTitle'] }); wx.ready(function () { wx.invoke(' chooseInvoiceTitle ', { // "scene": "1" }, function (res) { }); });
2018-02-26 - 微信H5公众号,如何获取微信抬头
wx.invoke('chooseInvoiceTitle', { "scene":"1" },function(res) { alert(JSON.stringify(res)); //这里是回调函数 }); 使用这个不行,这是为什么 总是说 chooseInvoiceTitle:fail_api unauthoreized
2017-08-30