gpt4 book ai didi

vue.js - 如何在 v-for 指令中获取 vuejs 中的键值?

转载 作者:搜寻专家 更新时间:2023-10-30 22:55:21 26 4
gpt4 key购买 nike

我在 vue 模板上有这个:

<div v-for="item in items" :key="item.id">
<!-- content -->
</div>

我想获取 item.id 的值并通过 axios 发送。

我不知道如何将值从模板绑定(bind)到脚本部分。

最佳答案

您可以在 div 中放置一个带有点击处理程序的按钮:

<div v-for="item in items" :key="item.id">
<button @click="sendItem(item.id)">Send</button>
</div>

并在methods部分定义处理程序:

<script>
export default {
data: ...
methods: {
sendItem: function(itemId) {
// Using axios here
}
}
}
</script>

关于vue.js - 如何在 v-for 指令中获取 vuejs 中的键值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48387054/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com