zoukankan      html  css  js  c++  java
  • 微信小程序 生命周期

    [+]

     

    这里写图片描述

    这里只要熟悉页面的基本生命周期即可,业务在指定生命周期函数内书写。

    以下是官网给出的生命周期函数方法和状态图

    这里写图片描述

    这里写图片描述

    • 上面的生周期函数图对于做Android 或者IOS的来书理解起来应该不是难事,具体怎么掌握只有慢慢尝试和摸索

    代码处理:

    这里的代码主需要对使用创建项目时index目录下文件处理下就行,至于跳转后的页面用的还是logs不需要更改!下面贴下代码注释也比较详细

    index.wxml

    <!--index.wxml-->
    <view class="container">
    <!--绑定点击事件-->
      <view  bindtap="bindViewTap" class="userinfo">
      </view>
      <view class="usermotto">
      <!--数据绑定-->
        <text class="user-motto">{{motto}}</text>
      </view>
    </view>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    index.wxss

    /**index.wxss**/
    
    .container {
       800;
      height: 800;
    }
    .userinfo {
       120rpx;
      height: 120rpx;
      background: red;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    index.js

    //index.js
    //获取应用实例
    var app = getApp()
    Page({
      /**
       * 通过data初始化数据
       */
      data: {
        motto: '点击上面View跳转',
        // userInfo: {}
      },
      //事件处理函数
      bindViewTap: function() {
        //通过调用API进行跳转
        wx.navigateTo({
          url: '../logs/logs'
        })
      },
      /**
       * 监听页面开在加载的状态
       *    页面加载完成之后就不会在执行
       */
      onLoad: function () {
        console.log('index---------onLoad()')
        // //this指的就是本页面对象
        // var that = this
        // //调用应用实例的方法获取全局数据
        // app.getUserInfo(function(userInfo){
        //   //更新数据
        //   that.setData({
        //     userInfo:userInfo
        //   })
        //   //更新本页面
        //   that.update()
        // })
      },
      /**
       *  监听页面显示,
       *    当从当前页面调转到另一个页面
       *    另一个页面销毁时会再次执行
       */
      onShow: function() {
        console.log('index---------onShow()')
      },
      /**
       * 监听页面渲染完成
       *    完成之后不会在执行
       */
      onReady: function() {
        console.log('index---------onReaday()');
      },
      /**
       * 监听页面隐藏
       *    当前页面调到另一个页面时会执行
       */
      onHide: function() {
        console.log('index---------onHide()')
      },
      /**
       * 当页面销毁时调用
       */
      onUnload: function() {
        console.log('index---------onUnload')
      }
    
    })
  • 相关阅读:
    python 列表与字符串互相转化
    python爬虫——BeautifulSoup详解(附加css选择器)
    python——requests库
    用代理池 + redis 刷博客浏览量(2)
    scrapy爬取知乎用户信息并存入mongodb
    python 爬虫 计算博客园浏览量,刷浏览量(1)
    python SocketServer模块创建TCP服务器·
    【XSY1986】【BZOJ1455】罗马游戏
    【模板】左偏树
    CF464D World of Darkraft
  • 原文地址:https://www.cnblogs.com/yelongsan/p/6405792.html
Copyright © 2011-2022 走看看