1# 自定义组件使用说明 2 3 4> **说明:** 5> 6> 从API Version 8 开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 7 8 9自定义组件是用户根据业务需求,将已有的组件组合,封装成的新组件,可以在工程中多次调用,提高代码的可读性。自定义组件通过element引入到宿主页面,使用方法: 10 11```html 12<element name='comp' src='../../common/component/comp.hml'></element> 13<div> 14 <comp prop1='xxxx' @child1="bindParentVmMethod"></comp> 15</div> 16``` 17 18- name属性指自定义组件名称(非必填),组件名称对大小写不敏感,默认使用小写。src属性指自定义组件hml文件路径(必填),若没有设置name属性,则默认使用hml文件名作为组件名。 19 20- 事件绑定:自定义组件中绑定子组件事件使用(on|\@)child1语法,子组件中通过{action:"proxy", method: "eventName"}触发事件并进行传值,父组件执行bindParentVmMethod方法并接收子组件传递的参数。 21 22## 自定义组件配置文件标签 23 24| 属性 | 类型 | 描述 | 25| -------- | -------- | -------- | 26| data | Object | 页面的数据模型,类型是对象。属性名不能以$或_开头,不要使用保留字for, if, show, tid。 | 27| props | Array/Object | props用于组件之间的通信,可以通过<tag xxxx='value'>方式传递给组件;props名称必须用小写,不能以$或_开头,不要使用保留字for, if, show, tid。目前props的数据类型不支持Function。 | 28 29 30## 添加自定义事件 31 32自定义组件内支持自定义事件,该事件的标识需要action类型指定为proxy,事件名则通过method指定。使用该自定义组件的卡片页面可以通过该事件名注册相应的事件回调,当自定义组件内该自定义事件触发时,会触发卡片页面上注册的回调事件。 33 34> **说明:** 35> 36> 事件名不支持大写字母。 37 38**自定义子组件示例:** 39 40```html 41<!-- comp.hml --> 42<div class="container"> 43 <div class="row-3" if="true"> 44 <button onclick="buttonClicked" value="click"></button> 45 </div> 46</div> 47``` 48 49```css 50/* comp.css */ 51.container { 52 flex-direction:column; 53 background-color: green; 54 width: 100%; 55 height: 100%; 56} 57 58.row-3 { 59 width: 100%; 60 height: 50px; 61 background-color: orange; 62 font-size:15px; 63} 64``` 65 66```json 67{ 68 "data": { 69 }, 70 "actions": { 71 "buttonClicked": { 72 "action": "proxy", 73 "method":"event_1" 74 } 75 } 76} 77``` 78**父组件示例:** 79 80```html 81<!-- xxx.hml --> 82<element name='comp' src='../../common/customComponent/customComponent.hml'></element> 83 84<div class="container"> 85 <comp @event_1="click"></comp> 86 <button value="parentClick" @click="buttonClick"></button> 87</div> 88``` 89 90```css 91/* xxx.css */ 92.container { 93 background-color: red; 94 height: 500px; 95 width: 500px; 96} 97``` 98 99```json 100{ 101 "data": { 102 }, 103 "actions": { 104 "click": { 105 "action": "message", 106 "params": { 107 "message": "click event" 108 } 109 }, 110 "buttonClick": { 111 "action": "message", 112 "params": { 113 "message": "click event 2" 114 } 115 } 116 } 117} 118``` 119 120 121## props 122 123自定义组件可以通过props声明自定义属性,父组件通过设置属性向子组件传递参数。 124 125### 添加默认值 126 127子组件可以通过固定值default设置默认值,当父组件没有设置该属性时,将使用其默认值。此情况下props属性必须为对象形式,不能用数组形式,示例如下: 128 129```html 130<!-- comp.hml --> 131<div class="container"> 132 <div class="row-1"> 133 <div class="box-1"> 134 <text>xiaoziti</text> 135 </div> 136 <div class="box-2"> 137 <text>{{text}}</text> 138 </div> 139 <div class="box-3"> 140 <text>{{textdata[0]}}</text> 141 </div> 142 </div> 143 <div class="row-2" if="true"> 144 <button value="{{progress}}"></button> 145 </div> 146 <div class="row-3" if="true"> 147 <button onclick="buttonClicked" value="click"></button> 148 </div> 149</div> 150``` 151 152```json 153{ 154 "data": { 155 "progress": { 156 "default": "80" 157 } 158 }, 159 "props": { 160 "textdata": { 161 "default": ["a","b"] 162 }, 163 "progress": { 164 "default": 60 165 }, 166 "text": { 167 "default": "ha" 168 } 169 }, 170 "actions": { 171 "buttonClicked": { 172 "action": "proxy", 173 "method": "event_1" 174 } 175 } 176} 177``` 178 179引用子组件comp的父组件示例如下: 180 181```html 182<!-- xxx.hml --> 183<element name='comp' src='../../common/customComponent/customComponent.hml'></element> 184 185<div class="container"> 186 <comp progress="{{clicknow}}" textdata="{{texts}}" if="false" @event_1="click"></comp> 187</div> 188``` 189 190### 数据单向性 191 192父子组件之间数据的传递是单向的,只能从父组件传递给子组件,子组件不能直接修改父组件传递下来的值,可以将props传入的值用data接收后作为默认值,再对data的值进行修改。 193 194更多说明请参考[props](../arkui-js/js-components-custom-props.md)文档。