在uniapp中 真机运行里 是不是不可以给动态传参 @tap=function(参数)
在以下代码中 通过真机运行 toCategory方法总是提示item对象没有定义undefined
<view class="box" v-for="(item,ii) in box.info" :key="ii" @tap="toCategory(item)" >
在uniapp中 真机运行里 是不是不可以给动态传参 @tap=function(参数)
在以下代码中 通过真机运行 toCategory方法总是提示item对象没有定义undefined
<view class="box" v-for="(item,ii) in box.info" :key="ii" @tap="toCategory(item)" >
3 个回复
APPAPP
<view @tap="toCategory" :data-xxxxxx="item.xxxxxx">
toCategory(e)
......
let xxxxxx = e.currentTarget.dataset.xxxxxx;
......
9***@qq.com - 前端工程师
我这真机运行一直可以动态传参哦,是不是box.info有问题?
9***@qq.com
我也是...页面里面都是好的,带到方法里面去就显示找不到了...
你有解决么..