作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我不知道如何执行 console.log
来查看传递的 ul
中的项目。
<div v-for="(item, index) in todos" :key="index">
<ul v-if="item" :load="console.log(item)">
<li v-for="(value, key) in item" :key="key">
<label v-bind:for="key">{{ key }}</label>
<div v-bind:id="key">{{ value }}</div>
</li>
</ul>
</div>
var vm = new Vue({
el: '#components-demo',
data: {
todos: [
newData
]
}
})
最佳答案
你应该定义一个像这样的方法:
<ul v-if="item" :load="log(item)">
在你的脚本中:
var vm = new Vue({
el: '#components-demo',
data: {
todos: [
newData
]
},
methods: {
log(item) {
console.log(item)
}
}
})
关于javascript - 如何在 Vue 中的 v-for 循环中 console.log 一个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54077681/
我是一名优秀的程序员,十分优秀!