小程序纯数据字段 Component({ /** * 组件的属性列表 */ options: { pureDataPattern:/^_/ },...} 小程序 2022-06-28 评论 269 次浏览
小程序组件生命周期 Component({pageLifetimes: { show: function() { // 页面被展示 初始化数据的时候操作 this._randColor() }, hide: function() { // 页面被隐藏 }, resize: function(size) { // 页面尺寸变化 } }, lifetimes: { attached: function () { try { // 需要在初始化的时候做的操作 } catch (e) { } this._randColor() // 在组件实例进入页面节点树时执行 }, detached: function () { // 在组件实例被从页面节点树移除时执行 }, }}pageLifetimes在每次页面载入时都会执行 小程序 2022-06-28 评论 330 次浏览
小程序 组件监听 Component({data: { rgb:{ r:0,g:0,b:0 }, fullcolor:'0,0,0' }, observers:{ 'rgb.r,rgb.g,rgb.b':function(r,g,b) { this.setData({fullcolor:`${r},${g},${b}`}) }, 'rgb.**':function(obj) { this.setData({fullcolor:`${obj.r},${obj.g},${obj.b}`}) } }} 小程序 2022-06-28 评论 352 次浏览