【微信小程序】组件Component常用案例

今天用了,总结一下。

Component组件可以在页面上使用,如

<comp1 isshow={{p_isshow}} bindcancel=cancel></comp1>

 

comp1.js里

Component({
    //对外属性
    properties:{
       ishow{
            type:Boolean,
            value:true,
            observer:function(){}} //属性变化时的监控器
    },
    //对内属性,跟页面没什么区别
    data:{
        
    }
    //方法
    methods:{
        showMoney:function(){}
    }
  //周期函数
})

 

页面:

data{
    p_isshow:true
}
cancel:function()
{
    var that =this;
    that.setData({p_isshow:false})
}

 

【微信小程序】组件Component常用案例

上一篇:OPatch升级,ERROR: This patch is not applicable to GI home.


下一篇:【安卓笔记】WebView控件使用