在小程序添加点击按钮实现重新渲染页面
index.wxml文件
<button bindtap="onrefresh">重新渲染</button> //添加一个点击重新渲染按钮
index.js文件
, onrefresh:function(){ wx.showToast({ title: '开始重新渲染', icon: 'success', duration: 2000 }); this.onLoad();}//在onrefresh中完成重新渲染
, onrefresh:function(){
wx.showToast({
title: '开始重新渲染',
icon: 'success',
duration: 2000
});
this.onLoad();
}//在onrefresh中完成重新渲染