考虑到这种情况
在 .vuetemplate
<div v-for="(tweet, index) in tweets">
<div class="each_tweet">
<textarea v-on:keyup="typing(index)"
placeholder="What's happening now">{{ tweet.content }}</textarea>
</div>
</div>
在 .vue<script>
export default {
methods: {
typing: function(index) {
console.log(this.tweets[index])//How to get the value of textarea
}
},
data: function () {
return {
tweets: [{id: 0, content: ""},
{id: 1, content: ""}]
}
}
}
我的问题是:
1)有没有办法将 textarea 的值与每个推文对象的内容同步?该值是指文本区域的内部文本。
2)有没有办法在“打字”方法中获取文本区域的值?