vue在js实参中获取数据的格式?比如:{{item.key}}的形式该如何写来获取接口返回的数据,目前这样写是错误的,求教js:function test(obj,id){ console.log(id);}html:<a onclick="test(this,{{item.key}})"></a>
1 回答
翻过高山走不出你
TA贡献1875条经验 获得超3个赞
你的意思是在vue中的事件回调的参数怎么传递吗?
<a @click="test($event, item.key)"> //$event 为 原生event对象
function test (event, key){
//do something
}
添加回答
举报
0/150
提交
取消