子父props交互通信
- :xxx.sync=""
- 父组件属性修改时会影响子组件
- :twoWay:true (在子组件的props项中定义该属性)
- 子组件修改该属性值时会影响父组件
循环
- 需要使用repeat标签
- 例:
<repeat for="{{list}}" item="item" key="index" index="index">
<text>{{item}}</text>
</repeat>
元素属性定义
- 例:
<image lazy-load="true" src="{{userInfo.avatarUrl}}" @load="ImageError"></image>