A页面点击跳转到B页面时控制台报错URIError: URI malformed,同时B页面onReady生命周期不执行
A 页面wxml
<view class="container">
<view class="demo-text-1" bindtap="gohome">
💓💗💖💖❤️🩹🤍♈️♈️🛐🛐♋️♌️♍️🔞🚭🚭🚷♨️♨️🚯🈯️💹💹❇️♻️🔃🔃🔂🔂🔃🔃🔄敢饿呀呀啊啊啊啊啊哈哈哈😆、在一起了吧吧吧吧吧吧_海报和预告片曝光啦……clubenlolaw💓💗💖💖❤️🩹🤍♈️♈️🛐🛐♋️♌️♍️🔞🚭🚭🚷♨️♨️🚯🈯️💹💹❇️♻️🔃🔃🔂🔂🔃🔃🔄
</view>
</view>
A 页面js
Page({
gohome: function () {
const a={}
wx.navigateTo({
url: '/home/index',
})
}
})
B页面js
Page({
onLoad: function () {
},
onReady: function () {
console.log('home onReady')
},
onShow: function () {
console.log('home onShow')
}
})