vue在js实参中获取数据的格式?

vue在js实参中获取数据的格式?比如:


{{item.key}}的形式该如何写来获取接口返回的数据,目前这样写是错误的,求教

js:


function test(obj,id){

    console.log(id);

}

html:


<a onclick="test(this,{{item.key}})"></a>

https://img4.mukewang.com/5c480d6c0001389e08000094.jpg

陪伴而非守候
浏览 606回答 1
1回答

翻过高山走不出你

你的意思是在vue中的事件回调的参数怎么传递吗?<a @click="test($event, item.key)"> //$event 为 原生event对象function test (event, key){&nbsp; &nbsp;//do something}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript