其他分享
首页 > 其他分享> > uni-app 父组件无法获取到子组件传来的值,为undefined;父子组件传值undefined

uni-app 父组件无法获取到子组件传来的值,为undefined;父子组件传值undefined

作者:互联网

一开始写的

<uni-modle ref="uniModle" @handleButton="handleButton()"></uni-modle>

// 用户点击了弹窗按钮
handleButton(e){
	console.log(e);//undefined
},

问题:函数名不需要 套上引号 ,括号也不需要

更正:

<uni-modle ref="uniModle" @handleButton = handleButton></uni-modle>



// 用户点击了弹窗按钮
handleButton(e){
	console.log(e);//"我是子组件传出来的值~"
},

搞定!

还没解决?再看一下正确方式:

https://blog.csdn.net/yanghongyan001/article/details/104814751?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_title~default-0.control&spm=1001.2101.3001.4242

标签:到子,console,undefined,blog,组件,handleButton,log
来源: https://blog.csdn.net/weixin_46221198/article/details/119279895