微信公众号开发

微信小程序开发笔记

本文主要是介绍微信小程序开发笔记,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1. 修改data中的数据

        this.setData({
            msg:'Sakura'
        })

  控制台输出data中的数据

console.log(this.data.msg)

2.  绑定事件 bindxxx 是不阻止冒泡事件绑定 catchxxx 是阻止冒泡事件绑定

    <!-- tap是点击事件 -->
    <view class="goStudy" bindtap="clickParent">
        <text bindtap="clickChild">hello world</text>
    </view>
    <!-- tap是点击事件 -->
    <view class="goStudy" catchtap="clickParent">
        <text catchtap="clickChild">hello world</text>
    </view>

  事件函数写在js中,与data平级

    // 事件回调函数
    clickParent(){
        console.log('clickParent')
    },

    clickChild(){
        console.log('clickChild')
    },

 

这篇关于微信小程序开发笔记的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!