- 微信小程序访问到空地址
微信小程序数据分析-访问分析-访问页面 [图片]为什么有个地址为空? 公众号菜单栏配置跳转到小程序,小程序路径为 pages/index/index,其他手机还没发现问题,iPhone X 提示页面不存在
2018-11-17 - web-view 回退
wx.navigateTo({ url: '/pages/webview/webview?url=' + encodeURIComponent('http://test.wojia-yun.com/iccp/#/apps/11438/console'), }) <!--pages/webview/webview.wxml--> <block wx:if="{{url != '' && url}}"> <web-view src="{{url}}"></web-view> </block> // pages/webview/webview.js Page({ /** * 组件的属性列表 */ data: { url: 'https://t.wojia-yun.com/app/weixin/default.html' }, onLoad: function (options) { this.setData({ url: decodeURIComponent(options.url) }) } }) 进入 /pages/webview/webview, webview逐渐先加载了 默认url (https://t.wojia-yun.com/app/weixin/default.html),然后才执行了onLoad 然后我第一次点击左上角回退 web-view 显示的是默认url (https://t.wojia-yun.com/app/weixin/default.html)的内容,在点一次才离开 /pages/webview/webview
2018-11-15 - 小程序下拉在微信开发者工具和手机端的差异
小程序下拉在微信开发者会在固定时间内停止当前页面下拉刷新,在iOS和安卓手机上要调用接口才能停止当前页面下拉刷新,能不能统一让它自动停止下拉刷新
2018-11-06 - wx.reLaunch 和 tabBar
app.json "tabBar": { "color": "#666666", "selectedColor": "#118ee9", "backgroundColor": "#ffffff", "list": [ { "iconPath": "image/home-blur.png", "selectedIconPath": "image/home-focus.png", "pagePath": "pages/index/index", "text": "首页" }, { "iconPath": "image/scancode.png", "pagePath": "pages/scanCode/scanCode", "text": "扫一扫" }, { "iconPath": "image/user-blur.png", "selectedIconPath": "image/user-focus.png", "pagePath": "pages/user/user", "text": "我的" } ] } 过程: 在页面 pages/log/log 使用 wx.reLaunch({ url: '/pages/index/index' }) 在开发工具上页面路径已经变成了pages/index/index,但是查看调试器wxml布局还是pages/log/log ??? 并且底部菜单上面区域为空白 开发工具报错: Can only update a mounted or mounting component. This usually means you called setState, replaceState, or forceUpdate on an unmounted component. This is a no-op. Please check the code for the u component. (bug不好重现,手机端也会出现这种问题)
2018-09-30