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);//"我是子组件传出来的值~"
},
搞定!
还没解决?再看一下正确方式:
标签:到子,console,undefined,blog,组件,handleButton,log 来源: https://blog.csdn.net/weixin_46221198/article/details/119279895