wx.showToast执行之后返回上一个页面
wx.showToast({
title: '提交成功',
icon: 'success',
duration: 2000,
success() {
setTimeout(() => {
wx.navigateBack({
complete: (res) => {
console.log(res)
},
})
}, 2000)
}
})
小程序数组倒序
var numberArray = [1,2,3]
numberArray .reverse();
注意:使用reverse必须要保证是数组调用而且不能为null、undefined 否则报错
文章来源:田珊珊个人博客
来源地址:http://www.tianshan277.com/825.html
申请创业报道,分享创业好点子。点击此处,共同探讨创业新机遇!