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