前言
本文的内容主要包含3部分:声明并渲染变量,包括条件渲染;通过class和style定义样式并动态绑定;事件的绑定,包含了事件传参。三部分均具有动态绑定的特性。
A、模板语法及数据绑定
1.声明和渲染变量
在使用变量前,需要先声明,一般在data块中进行声明,如hello uniapp项目中index.vue中定义的title变量如下:
data() { return { title: 'Hello' }},
可以在script语言块的data块中定义多个变量,并且在template语言块的视图中用{{}}
调用变量,并且可以绑定多种类型的变量,包括基本数据类型、数组等。
先测试基础数据调用,index.vue如下:
{{title}} hello-{{name}} export default { data() { return { title: 'Hello', name: 'Corley' } }, onLoad() { console.log('index onload') }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo { height: 200rpx; width: 200rpx; margin-top: 200rpx; margin-left: auto; margin-right: auto; margin-bottom: 50rpx; } .text-area { display: flex; justify-content: center; } .title { font-size: 36rpx; color: #8f8f94; }
显示:
可以看到,定义的title和name变量渲染到了视图中。
需要注意,声明的变量都是响应式的,即视图中渲染的结果与变量本身是绑定的,会同步变化,index.vue如下:
{{title}} hello-{{name}}-{{age}} var _self; export default { data() { return { title: 'Hello', name: 'Corley', age: 18 } }, onLoad() { _self = this; setTimeout(function(){ _self.age = 20 }, 3000); }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo { height: 200rpx; width: 200rpx; margin-top: 200rpx; margin-left: auto; margin-right: auto; margin-bottom: 50rpx; } .text-area { display: flex; justify-content: center; } .title { font-size: 36rpx; color: #8f8f94; }
显示:
可以看到,在进入onLoad
阶段后,渲染的age变量也发生变化,变为20。
还可以对数组进行数据绑定,可以获取数组的单个元素及其属性,如下:
{{title}} {{students[0]}}
{{students[0].name}} var _self; export default { data() { return { title: 'Hello', name: 'Corley', age: 18, students: [{ name: "张三", age: 18 }, { name: "李四", age: 20 } ] } }, onLoad() { _self = this; setTimeout(function() { _self.age = 20 }, 3000); }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo { height: 200rpx; width: 200rpx; margin-top: 200rpx; margin-left: auto; margin-right: auto; margin-bottom: 50rpx; } .text-area { display: flex; justify-content: center; } .title { font-size: 36rpx; color: #8f8f94; }
显示:
也可以使用循环来遍历数组,即使用v-for
进行遍历。
index.vue如下:
{{title}} {{index}} - {{item.name}} : {{item.age}} var _self; export default { data() { return { title: 'Hello', name: 'Corley', age: 18, students: [{ name: "张三", age: 18 }, { name: "李四", age: 20 } ] } }, onLoad() { _self = this; setTimeout(function() { _self.age = 20 }, 3000); }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo { height: 200rpx; width: 200rpx; margin-top: 200rpx; margin-left: auto; margin-right: auto; margin-bottom: 50rpx; } .text-area { display: flex; justify-content: center; } .title { font-size: 36rpx; color: #8f8f94; }
显示:
显然,此时遍历出了数组中的所有元素。
2.条件渲染
条件渲染是指满足某个条件才渲染某个元素,使用v-if
。
如下:
{{title}} show1... show2... var _self; export default { data() { return { title: 'Hello', name: 'Corley', age: 18, show1: true, show2: false } }, onLoad() { _self = this; setTimeout(function() { _self.age = 20 }, 3000); }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo { height: 200rpx; width: 200rpx; margin-top: 200rpx; margin-left: auto; margin-right: auto; margin-bottom: 50rpx; } .text-area { display: flex; justify-content: center; } .title { font-size: 36rpx; color: #8f8f94; }
显示:
此时根据v-if
中传的值判断是否渲染。
:hidden
属性用来定义是否隐藏某个元素,如下:
{{title}} show1... show2... var _self; export default { data() { return { title: 'Hello', name: 'Corley', age: 18, show1: true, show2: false } }, onLoad() { _self = this; setTimeout(function() { _self.age = 20 }, 3000); }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo { height: 200rpx; width: 200rpx; margin-top: 200rpx; margin-left: auto; margin-right: auto; margin-bottom: 50rpx; } .text-area { display: flex; justify-content: center; } .title { font-size: 36rpx; color: #8f8f94; }
显示:
可以看到,v-if
和:hidden
的效果相反,但是原理上还是有一定区别:v-if
是根据条件决定是否渲染,:hidden
会渲染但根据条件决定是否展示,可以根据具体需要进行选择。
B、class和style绑定
前面已经提到过,可以在template语言块的某个标签中通过style属性直接定义样式,也可以在style语言块中通过选择器定义样式,再在template语言块中使用。
为节约性能,可以将Class与Style的表达式通过compiler硬编码到uni-app中,通过条件判断来决定是否显示某个样式。
1.class语法
class支持的语法方式如下:
111222333444555
其中,前3种为完整形式,后2种为简写形式;isActive ? activeClass : ''
为三元运算符。
index.vue如下:
{{title}} class bind 2... class bind 3... export default { data() { return { title: 'Hello', name: 'Corley', age: 18, isRed: true, isBlue: true } }, onLoad() { }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo { height: 200rpx; width: 200rpx; margin-top: 200rpx; margin-left: auto; margin-right: auto; margin-bottom: 50rpx; } .text-area { display: flex; justify-content: center; } .title { font-size: 36rpx; color: #8f8f94; } .blue { color: #007AFF; }
显示:
可以看到,在进行编译选然后,微信开发者工具中wxml显示的是被渲染后的class值。
2.style语法
style 支持的语法如下:
111222333444
其中,前2种为完整形式,后2种为简写形式。
index.vue如下:
{{title}} style static... class dynamic... var _self; export default { data() { return { title: 'Hello', name: 'Corley', age: 18, fontSize: 20 } }, onLoad() { _self = this; setTimeout(function(){ _self.fontSize = 30; }, 3000) }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } .logo { height: 200rpx; width: 200rpx; margin-top: 200rpx; margin-left: auto; margin-right: auto; margin-bottom: 50rpx; } .text-area { display: flex; justify-content: center; } .title { font-size: 36rpx; color: #8f8f94; } .blue { color: #007AFF; }
显示:
显然,样式可以动态发生变化。
需要注意,uni-app不支持 Vue官方文档中Class 与 Style 绑定 中的 classObject 和 styleObject 语法,但是可以用 computed 方法生成 class 或者 style 字符串,插入到页面中,如下:
3.案例–动态菜单切换
本案例实现动态切换导航栏。
先展示横向排列的导航栏,index.vue如下:
{{item}} var _self; export default { data() { return { menus: [ '新闻', '汽车', '读书' ] } }, onLoad() { }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .menu { padding: 10px; float: left; margin: 5px; line-height: 36px; }
显示:
此时已经可以将导航栏横向展示了。
再实现当前的导航栏显示不一样的颜色,如下:
{{item}} var _self; export default { data() { return { menus: [ '新闻', '汽车', '读书' ], activeIndex: 0 } }, onLoad() { }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { } } .menu { padding: 10px; float: left; margin: 5px; line-height: 36px; } .menuActive { color: #FF0000 !important; }
显示:
此时,第1个导航栏变为红色。
进一步实现点击时,颜色动态变化,如下:
{{item}} var _self; export default { data() { return { menus: [ '新闻', '汽车', '读书' ], activeIndex: 0 } }, onLoad() { _self = this }, onShow() { console.log('index onshow') }, onHide() { console.log('index onhide') }, methods: { menuClick: function(e){ var aid = e.target.id; console.log(aid); _self.activeIndex = aid; } } } .menu { padding: 10px; float: left; margin: 5px; line-height: 36px; } .menuActive { color: #FF0000 !important; }
使用了事件来达到动态切换的效果。
显示:
可以看到,点击不同的导航栏实现了颜色同步变化的效果。
C、事件和事件绑定
1.uni-app事件
事件映射表定义了WEB事件和uni-app事件之间的对应关系,具体如下:
Web事件 | uni-app事件 | 说明 |
---|---|---|
click | ‘tap’ | 被点击 |
touchstart | ‘touchstart’ | 手指开始在元素上触摸时 |
touchmove | ‘touchmove’ | 移动 |
touchcancel | ‘touchcancel’ | 取消 |
touchend | ‘touchend’ | 结束 |
tap | ‘tap’ | 单机 |
longtap | ‘longtap’ | 长按 |
input | ‘input’ | 输入 |
change | ‘change’ | 改变 |
submit | ‘submit’ | 表单提交 |
blur | ‘blur’ | 失焦 |
focus | ‘focus’ | 聚焦 |
reset | ‘reset’ | 表单重置 |
confirm | ‘confirm’ | 确认 |
columnchange | ‘columnchange’ | 字段变化 |
linechange | ‘linechange’ | 行比那花 |
error | ‘error’ | 错误 |
scrolltoupper | ‘scrolltoupper’ | 滚动到顶部 |
scrolltolower | ‘scrolltolower’ | 滚动到底部 |
scroll | ‘scroll’ | 滚动 |
说明:
(1)在 input 和 textarea 中 change 事件会被转为 blur 事件;
(2)列表中没有的原生事件也可以使用,例如map组件的regionchange 事件直接在组件上添加@regionchange
修饰即可,同时这个事件也非常特殊,它的 event type 有 begin 和 end 两个,导致我们无法在handleProxy 中区分到底是什么事件,所以在监听此类事件的时候同时监听事件名和事件类型,即