为什么使用navigator 页面跳转 不会跳转?
//index.js //获取应用实例 const app = getApp() Page({ data: { num:2, win: '你赢了' , imgUrl:[ "/images/quan_03.png" , "/images/quan_05.png" , "/images/quan_07.png" , ], winNum:0, myTime: '' }, //事件处理函数 bindViewTap: function () { wx.navigateTo({ url: '../logs/logs' }) }, onLoad: function () { }, mySetinterval(){ this .data.myTime = setInterval(()=>{ let n = Math.floor(Math.random() * 3) console.log(123) this .setData({ num: n }, 2000); },1000) }, endtime(){ clearInterval( this .myTime) }, onReady(){ }, getUserInfo: function (e) { console.log(e) app.globalData.userInfo = e.detail.userInfo this .setData({ userInfo: e.detail.userInfo, hasUserInfo: true }) } }) |
两个问题。
在页面加载完成后 使用定时器。建议你在onReady里操作。
navigateTo跳转不了的问题,。你看下你这个页面是不是tabbar页面。