微信小程序教程笔记3

微信小程序的事件
什么是事件
事件的类型
事件冒泡
事件绑定
事件对象详解

什么是事件
一种用户行为
一种通讯方式

事件的类型
点击事件tap
长按事件longtap
触摸事件touchstart touchend touchmove touchcancel
其他事件submit input…

事件冒泡
冒泡事件
非冒泡事件

事件绑定
bind
catch 不会触发冒泡事件

事件对象详解
在这里插入图片描述

<!--index.wxml-->
<view class="view1" bindtap="view1Click" id="view1" data-title="新闻标题" data-id="11">
  view1
  <view class="view2" bindtap="view2Click" id="view2">
  view2
    <view class="view3" bindtap="view3Click" id="view3">
    view3
    </view>
  </view>
</view>
/**index.wxss**/
.view1{
  height:500px;
  width:100%;
  background-color:aquamarine;
}

.view2{
  height:400px;
  width:80%;
  background-color:rgb(255, 127, 170);
}

.view3{
  height:300px;
  width:30%;
  background-color:rgb(19, 20, 20);
}
//index.js
//获取应用实例
const app = getApp()

Page({
  data: {
    motto: 'Hello World',
    userInfo: {},
    hasUserInfo: false,
    canIUse: wx.canIUse('button.open-type.getUserInfo')
  },
  //事件处理函数
  view1Click: function(event){
    console.log("view1Click")
    console.log(event)
  },
  view2Click: function (event) {
    console.log("view2Click")
    console.log(event)
  },
  view3Click: function (event) {
    console.log("view3Click")
    console.log(event)
  },
  bindViewTap: function() {
    wx.navigateTo({
      url: '../logs/logs'
    })
  },
  onLoad: function () {
    if (app.globalData.userInfo) {
      this.setData({
        userInfo: app.globalData.userInfo,
        hasUserInfo: true
      })
    } else if (this.data.canIUse){
      // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
      // 所以此处加入 callback 以防止这种情况
      app.userInfoReadyCallback = res => {
        this.setData({
          userInfo: res.userInfo,
          hasUserInfo: true
        })
      }
    } else {
      // 在没有 open-type=getUserInfo 版本的兼容处理
      wx.getUserInfo({
        success: res => {
          app.globalData.userInfo = res.userInfo
          this.setData({
            userInfo: res.userInfo,
            hasUserInfo: true
          })
        }
      })
    }
  },
  getUserInfo: function(e) {
    console.log(e)
    app.globalData.userInfo = e.detail.userInfo
    this.setData({
      userInfo: e.detail.userInfo,
      hasUserInfo: true
    })
  }
})

console:
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值