1、运行环境(宿主环境)
2、基本架构
视图层:wxml视图文件和wxss样式文件都是对渲染层的描述。
逻辑层:脚本文件xjs是逻辑层的描述
3、条件渲染(条件成立时组件才渲染开始) wx:if
<text wx:if="{{thisWeekMovie.isHighlyRecommended}}"style="font-size:16px;color:red">强烈推荐</text> <text hidden="{{!thisWeekMovie.isHighlyRecommended}}"style="font-size:16px;color:red">强烈推荐</text> 其实用hidden的效率要高些
<text>{{count+score}}</text>
<text>{{(score>=60)?"及格":"不及格"}}</text>
4、列表渲染(重复的渲染生成组件) wx:for