单个的数据绑定:
https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/data.html
列表循环:https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/list.html
条件判断:https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/conditional.html
模板:这个用的少
https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/template.html
引用:搭积木必备
https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/import.html
view 和 block区别
<view> 是一个组件,会在页面上做渲染;
<block>不是一个组件,它仅仅是一个包装元素,只接受控制属性,不会在页面中做任何渲染。
网友评论