生命周期

  1. <script>
  2. export default {
  3. data: {
  4. title: 'Hello'
  5. },
  6. onLoad:function(e){
  7. console.log("onLoad");
  8. },
  9. onHide:function(e){
  10. console.log("onHide");
  11. },
  12. onShow:function(e){
  13. console.log("onShow");
  14. },
  15. onPullDownRefresh :function(e){
  16. console.log('onPullDownRefresh')
  17. },
  18. onReachBottom:function(e){
  19. console.log('onReachBottom')
  20. }
  21. }
  22. </script>

在page.json中配置

  1. {
  2. "path" : "pages/sheng_ming_zhou_qi/sheng_ming_zhou_qi",
  3. "enablePullDownRefresh" : true,
  4. "style" : {}
  5. }

这个下拉不是指往下拉页面,是那种顶部的下拉刷新!!!