@作者 : SYFStrive
: 微信小程序
: 微信小程序专栏链接
: 感谢支持,学累了可以先看小段由小胖给大家带来的街舞
微信小程序()
组件模板渲染的私有数据如
/**
* 组件的方法列表
*/
methods: {
addCount(){
this.setData({
count:this.data.count+1
})
this._TiShi()
},
_TiShi(){
wx.showToast({
title: 'count是'+this.data.count
})
}
},
在小程序组件中,事件处理函数和自定义方法需要定义到 methods 节点中,
示例代码如
/**
* 组件的方法列表
*/
methods: {
addCount(){
this.setData({
count:this.data.count+1
})
this._TiShi()
},
_TiShi(){
wx.showToast({
title: 'count是'+this.data.count
})
}
},
在小程序组件中,properties 是组件的对外属性,用来接收外界传递到组件中的数据。
示例代码如
WXML
<text1 max="5"></text1> //默认值是15 这里设置最大值为5,覆盖了最大值
COMPONENT
<view>添加的值为:{{count}}</view>
<button bindtap="addCount">点击按钮</button>
JS
/**
* 组件的属性列表
*/
properties: {
max:{
type:Number,
value:15
}
},
/**
* 组件的方法列表
*/
methods: {
addCount(){
if(this.data.count>=this.properties.max) return;
this.setData({
count:this.data.count+1
})
this._TiShi()
},
//提示框
_TiShi(){
wx.showToast({
title: 'count是'+this.data.count
})
}
},
在小程序的组件中,properties 属性和 data 数据的用法相同,它们都是可读可写的 区别如
测试两者是否相等如
/**
* 组件的属性列表
*/
properties: {
max:{
type:Number,
value:15
}
},
/**
* 组件的初始数据
*/
data: {
count:1
},
proData(){
console.log(this.data.max);
console.log(this.data.count);
console.log(this.data===this.properties);
}
由于 data 数据和 properties 属性在本质上没有任何区别,因此 properties 属性的值也可以用于页面渲染,或使用 setData 为 properties 中的属性重新赋值
示例代码如
properties: {
max:{
type:Number,
value:15
}
},
methods: {
addCount(){
if(this.data.count>=this.properties.max) return;
this.setData({
count:this.data.count+1,
max:this.properties.max+1
})
},
}
数据监听器用于监听和响应任何属性和数据字段的变化,从而执行特定的操作。它的作用类似于 vue 中的watch 侦听器。在小程序组件中
数据监听器的基本语法格式如
'字段A','字段B':function(A值,B值){
}
数据监听器支持监听对象中单个或多个属性的变化
代码实习
WXML-------------
{ {funllColor}});">颜色的值为:{{funllColor}}
颜色的RGB值为: {{rgbValue.r}}-{{rgbValue.g}}-{{rgbValue.b}}
WXSS-------------
{ {funllColor}});">颜色的值为:{{funllColor}}
颜色的RGB值为: {{rgbValue.r}}-{{rgbValue.g}}-{{rgbValue.b}}
WXJS-------------
// components/text1/text1.js
Component({
/**
* 组件的属性列表
*/
properties: {
},
/**
* 组件的初始数据
*/
data: {
rgbValue:{
r:0,
g:0,
b:0
},
funllColor:'0,0,0'
},
observers:{
"rgbValue.r, rgbValue.g,rgbValue.b":function(r,g,b){
this.setData({
funllColor:`${r},${g},${b}`
})
}
},
/**
* 组件的方法列表
*/
methods: {
RValue(){
this.setData({
"rgbValue.r":this.data.rgbValue.g+5 >255 ? 255: this.data.rgbValue.r+5
})
},
GValue(){
this.setData({
"rgbValue.g":this.data.rgbValue.g+5 >255 ? 255: this.data.rgbValue.g+5
})
},
BValue(){
this.setData({
"rgbValue.b":this.data.rgbValue.b+5>255 ? 255: this.data.rgbValue.b+5
})
},
}
})
如
本文到这里就结束了,大佬们的支持是我持续更新的最大动力,希望这篇文章能帮到大家相关专栏连接
下篇文章再见ヾ( ̄▽ ̄)ByeBye