微信小程序怎么通过点击随机切换显示预设中的文本?
(js部分)有几段预设好的文本,如下:
chatList: [
{
name:
"lily"
,
text:
"你好吗?"
},
{
name:
"leeLi"
,
text:
"您知道吗?"
},
{
name:
"mei"
,
text:
"您吃饭了吗?"
},
{
name:
"anne"
,
text:
"你在干啥呢?"
}]
2.(wxml部分)如何通过点击随机切换这些预设文本呢?
< text >anne:你在干啥呢?</ text > < view >点我随机切换</ view > |