测试积点老人 发表于 2019-1-8 09:14:48

请教:微信小程序(有随机数)页面不能重新加载(刷新)问题。

小程序共3个页面,在页面间可任意跳转,
每页上方都想随机展示几幅图
且希望每次切换页面时图片随机不同
(采用了随机数)在index.js中我写了:Page({
data: {
   imglist1: [
       '/pic/pic1/tt' + Math.ceil(Math.random() * 9) + '.jpg',
       '/pic/pic1/tt' + Math.ceil(Math.random() * 9) + '.jpg',
       '/pic/pic1/tt' + Math.ceil(Math.random() * 9) + '.jpg',
      // { url: '/pic/pic1/tt' + Math.ceil(Math.random() * 9) + '.jpg' },
    ],
})在index.wxml中我写了:<swiper class="swipers1">
    <block wx:for="{{imglist1}}">
         <swiper-item>
             <imageclass="imgstyle1"mode="aspectFill"src="{{item}}"></image>
      </swiper-item>
    </block>
</swiper>目前症状:
初次进入小程序,图片变化了
但无论怎么切换页面,图片都不变
(随机数没被重新执行?)使用了wx.switchTab,不起作用。
请高手指教。感谢!

海海豚 发表于 2019-1-9 09:39:05

在page的onload事件中setData

abcsell 发表于 2019-1-9 09:46:47

随机数判定没有切换

qqq911 发表于 2019-1-9 10:54:14

函数没有被每次触发

jingzizx 发表于 2019-1-9 12:06:02

每次触发的条件要注意
页: [1]
查看完整版本: 请教:微信小程序(有随机数)页面不能重新加载(刷新)问题。