收藏
回答

组件中出现一些特殊字符时,点击跳转报错

框架类型 问题类型 操作系统 工具版本
小程序 Bug macOS 2.21.3

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')
  }
})


回答关注问题邀请回答
收藏
登录 后发表内容