收藏
回答

默认跳转后提示没找到 navigateTo 方法

问题类型 插件 AppID 插件版本号 AppID 操作系统 微信版本 基础库版本
Bug wx8abaf00ee8c3202e 1.1.5 wx66e127a19937f8a4 Android 8.0.49以上 3.4.6
<script setup>
	import {
		reactive,
		getCurrentInstance,
		ref
	} from 'vue'
	import {
		onReady,
		onLoad,
		onUnload,
		onHide
	} from "@dcloudio/uni-app"
	const {
		proxy
	} = getCurrentInstance()
	let Tucao = requirePlugin('tucao').default;
	onLoad((option) => {
		let userInfo = uni.getStorageSync('userInfo');
		console.log(userInfo)
		let userName = ''
		if (userInfo.image) {
			userName = userInfo.name
		}
		let userImage = ''
		if (userInfo.image_logo) {
			userImage = userInfo.image_logo
		}
		console.log('userInfo.value.openid')
		console.log(userInfo.openid)
		// 初始化并触发跳转,支持链式调用
		Tucao.init(proxy, {
			productId: 我的产品ID,
			avatar: userImage,
			nickname: userName,
			openid: userInfo.openid
		}).go();
	})
</script>



报错信息:Cannot read property 'navigateTo' of undefined




回答关注问题邀请回答
收藏

3 个回答

  • 🍎
    🍎
    07-10

    兔小巢的插件,调用go方法后内部提示没有navigateTo方法呢

    07-10
    有用
    回复
  • dreamhunter
    dreamhunter
    07-10

    你提供代码中没有看到navigateTo调用

    07-10
    有用
    回复
  • hello world
    hello world
    07-09

    请去对应的第三方社区询问

    07-09
    有用
    回复
登录 后发表内容