zoukankan      html  css  js  c++  java
  • 小程序总结(不断更新)

    xml

    <!--wxml-->
    <view wx:for="{{array}}"> {{item}} </view>
    // page.js
    Page({
      data: {
        array: [1, 2, 3, 4, 5]
      }
    })

    事件绑定

    <view bindtap='onbind'>
        我是事件2
        <view catchtap='onBind'>我是事件1</view>
    </view>
    
     onBind: function (event) {
        console.log("事件1执行了")
      },
      onbind: function (event) {
        console.log("事件2执行了")
      }

     生命周期

    Component({
      lifetimes: {
        attached: function() {
          // 在组件实例进入页面节点树时执行
        },
        detached: function() {
          // 在组件实例被从页面节点树移除时执行
        },
      },
      // 以下是旧式的定义方式,可以保持对 <2.2.3 版本基础库的兼容
      attached: function() {
        // 在组件实例进入页面节点树时执行
      },
      detached: function() {
        // 在组件实例被从页面节点树移除时执行
      },
      // ...
    })
  • 相关阅读:
    Spring定时
    随记生成验证码
    缅怀过去
    java运行可以执行文件
    随 记
    TLD生成
    IT鸟的回忆录
    梦之物语
    VINSMono
    WIDOWX 250 6DOF
  • 原文地址:https://www.cnblogs.com/llllpzyy/p/11139999.html
Copyright © 2011-2022 走看看