1# \@Builder装饰器:自定义构建函数 2 3 4前面章节介绍了如何创建一个自定义组件。该自定义组件内部UI结构固定,仅与使用方进行数据传递。ArkUI还提供了一种更轻量的UI元素复用机制\@Builder,\@Builder所装饰的函数遵循build()函数语法规则,开发者可以将重复使用的UI元素抽象成一个方法,在build方法里调用。 5 6 7为了简化语言,我们将\@Builder装饰的函数也称为“自定义构建函数”。 8 9 10> **说明:** 11> 12> 从API version 9开始,该装饰器支持在ArkTS卡片中使用。 13 14 15## 装饰器使用说明 16 17 18### 自定义组件内自定义构建函数 19 20定义的语法: 21 22 23```ts 24@Builder MyBuilderFunction() { ... } 25``` 26 27使用方法: 28 29 30```ts 31this.MyBuilderFunction() 32``` 33 34- 允许在自定义组件内定义一个或多个@Builder方法,该方法被认为是该组件的私有、特殊类型的成员函数。 35 36- 自定义构建函数可以在所属组件的build方法和其他自定义构建函数中调用,但不允许在组件外调用。 37 38- 在自定义函数体中,this指代当前所属组件,组件的状态变量可以在自定义构建函数内访问。建议通过this访问自定义组件的状态变量而不是参数传递。 39 40 41### 全局自定义构建函数 42 43定义的语法: 44 45 46```ts 47@Builder function MyGlobalBuilderFunction() { ... } 48``` 49 50使用方法: 51 52 53```ts 54MyGlobalBuilderFunction() 55``` 56 57 58- 全局的自定义构建函数可以被整个应用获取,不允许使用this和bind方法。 59 60- 如果不涉及组件状态变化,建议使用全局的自定义构建方法。 61 62 63## 参数传递规则 64 65自定义构建函数的参数传递有[按值传递](#按值传递参数)和[按引用传递](#按引用传递参数)两种,均需遵守以下规则: 66 67- 参数的类型必须与参数声明的类型一致,不允许undefined、null和返回undefined、null的表达式。 68 69- 在@Builder修饰的函数内部,不允许改变参数值。 70 71- \@Builder内UI语法遵循[UI语法规则](arkts-create-custom-components.md#build函数)。 72 73- 只有传入一个参数,且参数需要直接传入对象字面量才会按引用传递该参数,其余传递方式均为按值传递。 74 75 76### 按引用传递参数 77 78按引用传递参数时,传递的参数可为状态变量,且状态变量的改变会引起\@Builder方法内的UI刷新。 79 80```ts 81class Tmp { 82 paramA1: string = '' 83} 84 85@Builder function overBuilder(params: Tmp) { 86 Row() { 87 Text(`UseStateVarByReference: ${params.paramA1} `) 88 } 89} 90@Entry 91@Component 92struct Parent { 93 @State label: string = 'Hello'; 94 build() { 95 Column() { 96 // Pass the this.label reference to the overBuilder component when the overBuilder component is called in the Parent component. 97 overBuilder({ paramA1: this.label }) 98 Button('Click me').onClick(() => { 99 // After Click me is clicked, the UI text changes from Hello to ArkUI. 100 this.label = 'ArkUI'; 101 }) 102 } 103 } 104} 105``` 106 107 108按引用传递参数时,如果在\@Builder方法内调用自定义组件,ArkUI提供$$作为按引用传递参数的范式。 109 110```ts 111class Tmp { 112 paramA1: string = '' 113 paramB1: string = '' 114} 115 116@Builder function overBuilder($$ : Tmp) {...} 117``` 118 119 120 121```ts 122class Tmp { 123 paramA1: string = '' 124} 125 126@Builder function overBuilder($$: Tmp) { 127 Row() { 128 Column() { 129 Text(`overBuilder===${$$.paramA1}`) 130 HelloComponent({message: $$.paramA1}) 131 } 132 } 133} 134 135@Component 136struct HelloComponent { 137 @Link message: string; 138 139 build() { 140 Row() { 141 Text(`HelloComponent===${this.message}`) 142 } 143 } 144} 145 146@Entry 147@Component 148struct Parent { 149 @State label: string = 'Hello'; 150 build() { 151 Column() { 152 // Pass the this.label reference to the overBuilder component when the overBuilder component is called in the Parent component. 153 overBuilder({paramA1: this.label}) 154 Button('Click me').onClick(() => { 155 // After Click me is clicked, the UI text changes from Hello to ArkUI. 156 this.label = 'ArkUI'; 157 }) 158 } 159 } 160} 161``` 162 163 164### 按值传递参数 165 166调用\@Builder装饰的函数默认按值传递。当传递的参数为状态变量时,状态变量的改变不会引起\@Builder方法内的UI刷新。所以当使用状态变量的时候,推荐使用[按引用传递](#按引用传递参数)。 167 168 169```ts 170@Builder function overBuilder(paramA1: string) { 171 Row() { 172 Text(`UseStateVarByValue: ${paramA1} `) 173 } 174} 175@Entry 176@Component 177struct Parent { 178 @State label: string = 'Hello'; 179 build() { 180 Column() { 181 overBuilder(this.label) 182 } 183 } 184} 185``` 186