遇到了同样的问题。iframe内部之间的跳转出现了问题。
网页网页内嵌入iframe ,无法写入cookie 和 localstorage 问题iphone 上多种机型 微信APP(7.0.8及以上版本)内,网页中嵌入iframe ,无法在内部写入cookie 和 localStorage 问题
2021-02-12关注
微信基础库2.10.0报错 module is not defined,但是微信后台没有截获?js文件引用 utils/first-paint-report.js发布线上后报错,本地开发完全没问题。全是2.10.0版本的。怀疑是不是该版本有问题呢? 公司自己的监控平台抓获报错如下: [图片] 这个first-paint-report的代码如下: function wxPage (config) { if (!(config.networkId && config.paintId)) { return Page(config); } let modify_wx_page_init_paint_time_start = 0; wxPage.onLoadCalcTime = function (paintId, networkId, time) { if (wx.reportPerformance) { const pages = getCurrentPages(); const current = pages[pages.length - 1]; const path = current && current.route; wx.reportPerformance(paintId, time, `${path}[onLoad]`); // 加载/渲染类,生命周期内耗时 wx.reportPerformance(networkId, time, `${path}[onLoad]`); // 网络类,生命周期内耗时 } } wxPage.onReadyCalcTime = function (paintId, networkId, time) { if (wx.reportPerformance) { const pages = getCurrentPages(); const current = pages[pages.length - 1]; const path = current && current.route; wx.reportPerformance(paintId, time, `${path}[onReady]`); // 加载/渲染类,生命周期内耗时 wx.reportPerformance(networkId, time, `${path}[onReady]`); // 网络类,生命周期内耗时 } } function modifyOnLoad () { modify_wx_page_init_paint_time_start = new Date().getTime(); if (config.onLoad) { config.onLoad.apply(this, arguments); // eslint-disable-line no-invalid-this } } function modifyOnReady () { if (wx.reportPerformance) { const modify_wx_page_init_paint_time_end = new Date().getTime(); const modify_wx_page_init_paint_time = modify_wx_page_init_paint_time_end - modify_wx_page_init_paint_time_start; const pages = getCurrentPages(); const current = pages[pages.length - 1]; const path = current && current.route; wx.reportPerformance(config.paintId, modify_wx_page_init_paint_time, path); // 加载/渲染类,首次渲染时间 wx.reportPerformance(config.networkId, modify_wx_page_init_paint_time, path); // 网络类,首次渲染时间 } if (config.onReady) { config.onReady.apply(this, arguments); // eslint-disable-line no-invalid-this } } const modifyConf = { ...config, onLoad: modifyOnLoad, onReady: modifyOnReady } return Page(modifyConf) } module.exports = wxPage;
2020-04-27其实是有复制功能的。跟路径一样,跟在最后。😂 由于参数太长了,把复制功能顶没了。而且还不能滚动。所以找不到。 这个bug 需要尽快修一下。
mac小程序开发者工具,找不到复制页面参数的入口[图片]
2020-04-22就只是android微信小程序不能抓包,扫码访问网页是可以抓的。
Android微信7.0 小程序https抓包问题Android 微信升级7.0后,用charles抓包https,提示证书安全警告。 是因为7.0对第三方证书做了限制吗? 这个对测试工作影响很大 ヾ(・ε・`*)
2019-08-14