youzan / vant-weapp

轻量、可靠的小程序 UI 组件库
https://vant.pro/vant-weapp/
MIT License
17.77k stars 3.48k forks source link

var-toast VM99619:1 未找到 van-toast 节点,请确认 selector 及 context 是否正确 #1109

Closed ccc-chen closed 5 years ago

ccc-chen commented 5 years ago

注意:请按照下面的模板来新建 issue,不规范的 issue 会被立即关闭.

描述一下问题 使用van-toast的时候 VM99619:1 未找到 van-toast 节点,请确认 selector 及 context 是否正确

截图 如果是 UI 问题,请提供具体截图

环境

ccc-chen commented 5 years ago

2018-12-19 12 05 50

MetooQ commented 5 years ago

请问是怎么解决的呀?我也遇到了同样的问题

maojindao55 commented 5 years ago

同求

ccc-chen commented 5 years ago

bindtap名字不对

在 2019-01-19 22:18:53,maojindao55 notifications@github.com 写道:

同求

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub, or mute the thread.

JunevaYang commented 4 years ago

都是在页面上忘了加<van-toast id="van-toast" />

jiangzhaojie22 commented 3 years ago

都是在页面上忘了加<van-toast id="van-toast" />

确实

Tokisakixin commented 3 years ago

toast能不能在组件内使用?我在组建内调用toast,加了,引入也没问题,但是还是出错,未找到toast节点

xuebin00 commented 3 years ago

toast能不能在组件内使用?我在组建内调用toast,加了,引入也没问题,但是还是出错,未找到toast节点

同问???

xuebin00 commented 3 years ago

toast能不能在组件内使用?我在组建内调用toast,加了,引入也没问题,但是还是出错,未找到toast节点

得在引入Component组件的根级Page页引入toast。。根级页的json里引入van-toast,再在wxml中加。。。

Tokisakixin commented 3 years ago

吐司能不能在组件内使用?我在正常内调用吐司,加了,已经没有问题,但是还是出错,未找到吐司节点

得在引入组件组件的根级页面引入toast。根级页面的json里引入van-toast,再在wxml中加。。。

好的,谢谢,这边解决了,我这边和你说的不一样的地方就是 “得在引入组件组件的根级页面引入toast”,但是引入toast我这里是在component引入的

shadowX1121 commented 3 years ago

toast能不能在组件内使用?我在组建内调用toast,加了,引入也没问题,但是还是出错,未找到toast节点

toast能不能在组件内使用?我在组建内调用toast,加了,引入也没问题,但是还是出错,未找到toast节点

同问???

toast组件context参数指定为this,即context: this就可以了

Kobe972 commented 10 months ago

我加了<van-toast id="van-toast" />还不行

totwjt commented 2 months ago

这种都是this指向问题, 需要使用额外参数 例: Toast({ context: this, selector: '#van-toast', message: '提示信息' });