微信小程序 的坑

它里面的 index  里面的数据  大部分都是存在data里面的,因此你如果想要调用里面的东西。

只能this.data.XXX,

 

 如果你不想用data就再上面var 或者let;

下面是转换页面的方法

setTimeout(function () {
wx.redirectTo({
url: '../chose/chose',
success: function (res) { },
fail: function (res) { },
complete: function (res) { },
})
}.bind(this), 1000)
 
最后的数字是dealy的时间。
 
 

猜你喜欢

转载自www.cnblogs.com/thy95/p/9999922.html