4
你需要的功能是?
当dialog组件放在自定义组件中时
import Dialog from '/dist/dialog/dialog'
Dialog获取失败
你期望 API 是什么样的? 希望更新可以放在自定义组件中
你需要的功能是?
当dialog组件放在自定义组件中时
import Dialog from '/dist/dialog/dialog'
Dialog获取失败
你期望 API 是什么样的? 希望更新可以放在自定义组件中
具体的报错信息是什么?
在组件中:未找到 van-dialog 节点,请确认 selector 及 context 是否正确
找到问题了,需要context
Dialog({
context: this,
我加上this也不行呢。
onClickRight: function(e)
{
Dialog.confirm({
context: this,
title: '标题',
message: '弹窗内容'
}).then(() => {
// on confirm
}).catch(() => {
// on cancel
});
报错:未找到 van-dialog 节点,请确认 selector 及 context 是否正确
@maojindao55 wxml里怎么写的?
已经好了,wxml 写的节点有问题。thx
已经好了,wxml 写的节点有问题。thx
import Dialog from "@vant/weapp/dialog/dialog"; Dialog.alert({ context: this, title: "标题", message: "弹窗内容" }).then(() => { // on close }); 不是直接这样引入了吗??和wxml有啥关系呢??