uni-app 生命周期(下拉已解决)

生命周期

<script>
export default {
 data: {
  title: 'Hello'
 },
 onLoad:function(e){
  console.log("onLoad");
 },
 onHide:function(e){
  console.log("onHide");
 },
 onShow:function(e){
  console.log("onShow");
 },
 onPullDownRefresh :function(e){
  console.log('onPullDownRefresh')
 },
 onReachBottom:function(e){
  console.log('onReachBottom')
}
}
</script>

  我们需要在 page.json 中需要下拉的页面的中配置

{
            "path" : "pages/sheng_ming_zhou_qi/sheng_ming_zhou_qi",
            "enablePullDownRefresh" : true,
            "style" : {}
}

注意!!! 这个下拉不是指往下拉页面,是那种顶部的下拉刷新!!!之前就是这块没弄明白,才弄错了!!!

原文地址:https://www.cnblogs.com/wo1ow1ow1/p/10991145.html