1.微信小程序的动画只能执行一次,动画执行的是差值:
animation.rotate(360).step();
animation.rotate(-360).step();
2.mpvue刷新当前页面
if (getCurrentPages().length != 0) {
//刷新当前页面的数据
getCurrentPages()[getCurrentPages().length - 1].onShow();
}
3.组件的props传递数据,组件命名一定要大写
4.页面跳转不能跳转到tabar所指向的页面
如果要跳转到tabbar wx.switchTab(Object object)
5.跳转到上一个页面
wx.navigateBack({
delta:1)}