我需要打印来自quotes
的随机引用。我怎么能在Vue做到这一点?我应该使用v-for
还是有更好的方式?
<div class="SingleQuiteBody" v-for="quote in quotes">
...
<div class="SingleQuiteVote">
我的意思是我只需要从实体引号数组中打印一个随机引用。
答案 0 :(得分:2)
怎么样:
<div class="SingleQuiteBody">
{{quotes[Math.floor(Math.random() * quotes.length)]}}
</div>
Math.floor(Math.random() * quotes.length)
会在0
和quotes.length
之间给出一个随机整数。您也可以使用其他一些方法生成0到quotes
数组长度的随机数。