component.md 15.1 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# 组件

## 定义

- 组件是视图层的基本组成单元。
- 组件是一个单独且可复用的功能模块的封装。

每个组件,包括如下几个部分:以组件名称为标记的开始标签和结束标签、组件内容、组件属性、组件属性值。

- 组件名称由尖括号包裹,称为标签,它有开始标签和结束标签。结束标签的`<`后面用`/`来表示结束。结束标签也称为闭合标签。如下面示例的`<component-name>`是开始标签,`</component-name>`是结束标签。
- 在开始标签和结束标签之间,称为组件内容。如下面示例的`content`
- 开始标签上可以写属性,属性可以有多个,多个属性之间用空格分割
- 每个属性通过`=`赋值

D
DCloud_LXH 已提交
15
## 创建及引用组件 @create-and-import-component
D
DCloud_LXH 已提交
16

D
DCloud_LXH 已提交
17
### easycom
D
DCloud_LXH 已提交
18 19 20

传统vue组件,需要安装、引用、注册,三个步骤后才能使用组件。`easycom` 将其精简为一步。

21
只要组件安装在项目的 `components` 目录下或 `uni_modules/插件 id/components/插件 id/插件 id.uvue` 目录下,并符合 `组件名称/组件名称.(vue|uvue)` 目录结构。就可以不用引用、注册,直接在页面中使用。
D
DCloud_LXH 已提交
22

23
- 比如 [uni-loading](https://ext.dcloud.net.cn/plugin?id=15980),它导入到项目后,存放在了目录 /uni_modules/uni-loading/components/uni-loading/uni-loading.uvue
D
DCloud_LXH 已提交
24

25
  同时它的组件名称也叫 uni-loading,所以这样的组件,不用在 script 里注册和引用。如下:
D
DCloud_LXH 已提交
26 27 28 29

  ```html
  <template>
      <view>
30
        <uni-loading></uni-loading><!-- 这里会显示一个loading -->
D
DCloud_LXH 已提交
31 32 33
      </view>
    </template>
  <script>
34
    // 这里不用import引入,也不需要在components内注册组件。template里就可以直接用
D
DCloud_LXH 已提交
35
    // ...
D
DCloud_LXH 已提交
36 37 38
  </script>
  ```

39
这里出现了`uni_module`的概念,简单说下,它是uni-app的一种包管理方案。
D
DCloud_LXH 已提交
40

41
`uni_module`其实不止服务于组件,它可以容纳组件、script库、页面、项目等所有DCloud插件市场所支持的种类。
D
DCloud_LXH 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54

在HBuilderX中点右键可方便的更新插件,插件作者也可以方便的上传插件。

uni_module有详细的专项文档,请另行查阅[uni_module规范](https://uniapp.dcloud.net.cn/plugin/uni_modules.html)

#### easycom组件的类型规范 @easycom-component-type

组件标签名首字母大写,`驼峰+ComponentPublicInstance`,如:

`<test/>` 类型为:TestComponentPublicInstance
`<uni-data-checkbox/>` 类型为:UniDataCheckboxComponentPublicInstance

### 手动引入组件 @manual-import-component
D
DCloud_LXH 已提交
55

56
不符合 easycom 规范的组件,则需要手动引入:
D
DCloud_LXH 已提交
57 58 59 60 61 62 63 64 65 66

```vue
<!-- 组件 child.vue -->
<template>
  <view>Child Component</view>
</template>

<!-- 页面(与 child.vue 组件在同级目录 -->
<template>
  <view>
D
DCloud_LXH 已提交
67
    <child ref="component1"></child>
D
DCloud_LXH 已提交
68 69 70 71 72 73 74 75
  </view>
</template>
<script>
// 引入 child 组件
import child from './child.vue'
export default {
  components: {
    child
D
DCloud_LXH 已提交
76 77 78 79 80
  },
  data() {
    return {
      component1: null as ComponentPublicInstance | null // 手动引入组件时的类型
    }
D
DCloud_LXH 已提交
81 82 83 84 85
  }
}
</script>
```

D
DCloud_LXH 已提交
86 87 88 89 90 91
#### 手动引入组件的类型规范 @manual-import-component-type

类型为:ComponentPublicInstance


## 使用及通信 @use-and-communication
D
DCloud_LXH 已提交
92 93 94 95 96 97 98 99 100 101 102 103

### 页面与页面通信 @page-page-communication

1. 使用 [navigateTo](https://doc.dcloud.net.cn/uni-app-x/api/navigator.html#navigateto)`url` 地址中携带参数
2. 使用 [event-bus](https://doc.dcloud.net.cn/uni-app-x/api/event-bus.html)

### 页面与组件通信 @page-component-communication

#### 向组件传递 `props` @transfer-component-props

示例 [详情](<!-- VUEJSON.E_component-instance.props_props-options.gitUrl -->)

D
DCloud_LXH 已提交
104 105 106 107 108
::: warning 注意
- 选项式 API:`this.$props``Map` 类型,需要使用 `this.$props["propName"]` 来访问
- 组合式 API:可以使用 `.` 点操作符来访问
:::

D
DCloud_LXH 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
::: preview <!-- VUEJSON.E_component-instance.props_props-options.webUrl -->

> 选项式 API

<!-- VUEJSON.E_component-instance.props_props-options.code -->

> 组合式 API

<!-- VUEJSON.E_component-instance.props_props-composition.code -->

:::

#### 向组件传递回调函数 @transfer-component-method

示例 [详情](<!-- VUEJSON.E_component-instance.emit-function_emit-function-options.gitUrl -->)

::: preview <!-- VUEJSON.E_component-instance.emit-function_emit-function-options.webUrl -->

> 选项式 API

<!-- VUEJSON.E_component-instance.emit-function_emit-function-options.code -->

> 组合式 API

<!-- VUEJSON.E_component-instance.emit-function_emit-function-composition.code -->

:::

#### 使用 `provide/inject` 来向下传递参数 @provide-inject

示例 [详情](<!-- VUEJSON.E_component-instance.provide_provide-options-1.gitUrl -->)

::: preview <!-- VUEJSON.E_component-instance.provide_provide-options-1.webUrl -->

D
DCloud_LXH 已提交
143
> 选项式 API
D
DCloud_LXH 已提交
144 145 146 147 148 149 150 151 152 153 154

<!-- VUEJSON.E_component-instance.provide_provide-options-1.code -->

> 组合式 API

<!-- VUEJSON.E_component-instance.provide_provide-composition.code -->

:::

#### 使用 [全局变量与状态管理](../tutorial/store.md) @global-store

D
DCloud_LXH 已提交
155 156
> store/index.uts [文件详情](https://gitcode.net/dcloud/hello-uvue/-/blob/alpha/store/index.uts)

D
DCloud_LXH 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170
示例 [详情](<!-- VUEJSON.E_examples.nested-component-communication_nested-component-communication-options.gitUrl -->)

::: preview <!-- VUEJSON.E_examples.nested-component-communication_nested-component-communication-options.webUrl -->

> 选项式 API

<!-- VUEJSON.E_examples.nested-component-communication_nested-component-communication-options.code -->

> 组合式 API

<!-- VUEJSON.E_examples.nested-component-communication_nested-component-communication-composition.code -->

:::

D
DCloud_LXH 已提交
171
#### 在 `main.uts` 中使用 `app.config.globalProperties`
D
DCloud_LXH 已提交
172

D
DCloud_LXH 已提交
173 174 175 176 177 178 179 180
如在 `main.uts` 中的 `createApp` 方法中使用:
```ts
app.config.globalProperties.globalPropertiesReactiveObj = reactive({
  str: 'default reactive string',
  num: 0,
  bool: false,
} as UTSJSONObject)
```
D
DCloud_LXH 已提交
181

D
DCloud_LXH 已提交
182
示例 [详情](<!-- VUEJSON.E_app-instance.globalProperties_globalProperties-options.gitUrl -->)
D
DCloud_LXH 已提交
183

D
DCloud_LXH 已提交
184
::: preview <!-- VUEJSON.E_app-instance.globalProperties_globalProperties-options.webUrl -->
D
DCloud_LXH 已提交
185 186 187

> 选项式 API

D
DCloud_LXH 已提交
188
<!-- VUEJSON.E_app-instance.globalProperties_globalProperties-options.code -->
D
DCloud_LXH 已提交
189 190 191

> 组合式 API

D
DCloud_LXH 已提交
192
<!-- VUEJSON.E_app-instance.globalProperties_globalProperties-composition.code -->
D
DCloud_LXH 已提交
193 194 195

:::

D
DCloud_LXH 已提交
196 197 198 199 200 201

### 父组件与子组件通信 @parent-child-communication

上述 [页面与组件通信](#page-component-communication) 方法同样适用于父组件与子组件通信。

### 页面调用组件方法 @page-call-component-method
D
DCloud_LXH 已提交
202 203 204

#### 调用 `easycom` 组件方法 @call-easycom-component-method

D
DCloud_LXH 已提交
205
> 在调用组件方法的时候如报错 `error: Reference has a nullable type` 则需要使用 `?.` 操作符(如:a?.b?.())。
D
DCloud_LXH 已提交
206 207 208 209 210

easycom组件,用法和内置组件一样。也是使用 `this.$refs` 获取组件并转换为组件的类型,通过 `.`操作符 调用组件方法或设置属性。

**语法**

D
DCloud_LXH 已提交
211
```(this.$refs['组件ref属性值'] as 驼峰ComponentPublicInstance)?.foo?.();```
D
DCloud_LXH 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226

示例 [详情](<!-- VUEJSON.E_component-instance.methods_call-method-easycom-options.gitUrl -->)

::: preview <!-- VUEJSON.E_component-instance.methods_call-method-easycom-options.webUrl -->

> 选项式 API

<!-- VUEJSON.E_component-instance.methods_call-method-easycom-options.code -->

> 组合式 API

<!-- VUEJSON.E_component-instance.methods_call-method-easycom-composition.code -->

:::

D
DCloud_LXH 已提交
227
##### 调用 `uni_modules easycom` 组件方法 <Badge text="HBuilderX 3.97+"> @call-uni-modules-easycom-component-method
D
DCloud_LXH 已提交
228 229 230

使用 `ref` 属性拿到组件实例,调用 `easycom` 组件方法时不需要使用 `$callMethod` 方法,直接使用点操作符即可 `.`

D
DCloud_LXH 已提交
231
> 在调用组件方法的时候如报错 `error: Reference has a nullable type` 则需要使用 `?.` 操作符(如:a?.b?.())。
D
DCloud_LXH 已提交
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246

示例 [详情](<!-- VUEJSON.E_component-instance.methods_call-method-easycom-uni-modules-options.gitUrl -->)

::: preview <!-- VUEJSON.E_component-instance.methods_call-method-easycom-uni-modules-options.webUrl -->

> 选项式 API

<!-- VUEJSON.E_component-instance.methods_call-method-easycom-uni-modules-options.code -->

> 组合式 API

<!-- VUEJSON.E_component-instance.methods_call-method-easycom-uni-modules-composition.code -->

:::

D
DCloud_LXH 已提交
247 248 249 250 251 252 253 254 255 256
#### 使用 `ref` 属性搭配 `$callMethod` 方法 @call-component-method

如果不是内置组件,也不是easycom组件,那么无法使用`.`操作符了。

此时需使用 `this.$refs` 获取组件实例,然后通过 `$callMethod` 调用组件的方法。也就是把组件的方法名、参数,当做callMethod的参数来传递。此时也就没有`.`操作符那样的代码提示和校验了。

callMethod可用于所有自定义组件,包括easycom组件也可以使用,只不过easycom组件有更简单的用法。

**语法**

D
DCloud_LXH 已提交
257
```(this.$refs['组件ref属性值'] as ComponentPublicInstance)?.$callMethod('方法名', ...args)```
D
DCloud_LXH 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281

**组件类型**

ComponentPublicInstance

示例 [详情](<!-- VUEJSON.E_component-instance.parent_parent-options.gitUrl -->)

::: preview <!-- VUEJSON.E_component-instance.parent_parent-options.webUrl -->

> 选项式 API

<!-- VUEJSON.E_component-instance.parent_parent-options.code -->

> 组合式 API

<!-- VUEJSON.E_component-instance.parent_parent-composition.code -->

:::

**注意:**
- App-Android 平台 `4.0` 版本开始支持 `$callMethod` 调用 `defineExpose` 导出的方法
- Web 平台、App-iOS 平台 `4.13` 版本开始支持 `$callMethod` 调用 `defineExpose` 导出的方法


D
DCloud_LXH 已提交
282 283 284 285 286 287
#### 内置组件的方法调用或设置属性 <Badge text="HBuilderX 3.93+"> @call-builtin-component-method

使用 `this.$refs` 获取组件并as转换为组件对应的element类型,通过 `.`操作符 调用组件方法或设置属性。

**语法**

D
DCloud_LXH 已提交
288
```(this.$refs['组件ref属性值'] as Uni[xxx]Element)?.foo?.();```
D
DCloud_LXH 已提交
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317

**内置组件的element类型规范**

Uni`组件名(驼峰)`Element

如:

`<button>`: UniButtonElement
`<picker-view>`: UniPickerViewElement


示例 [详情](<!-- VUEJSON.E_component-instance.methods_call-method-uni-element-options.gitUrl -->)

::: preview <!-- VUEJSON.E_component-instance.methods_call-method-uni-element-options.webUrl -->

> 选项式 API

<!-- VUEJSON.E_component-instance.methods_call-method-uni-element-options.code -->

> 组合式 API

<!-- VUEJSON.E_component-instance.methods_call-method-uni-element-composition.code -->

:::

**bug&tips**

- 目前uts组件,即封装原生ui给uni-app或uni-app x的页面中使用,类型与内置组件的 Uni`组件名(驼峰)`Element 方式相同。目前没有代码提示。

D
DCloud_LXH 已提交
318 319 320 321
### 组件监听页面生命周期 @component-page-lifecycle

[示例](#component-lifecycle)

D
DCloud_LXH 已提交
322 323
## 组件的生命周期 @component-lifecycle

D
DCloud_LXH 已提交
324
> 选项式 API 和 组件式 API 在监听页面生命周期时有所不同
D
DCloud_LXH 已提交
325
>
D
DCloud_LXH 已提交
326
> 比如选项式 API 中的 `onShow`、`onHide` 监听页面生命周期在组合式 API 中分别对应 `onPageShow`、`onPageHide`(在组合式 API 时会和 App 的生命周期冲突)
D
DCloud_LXH 已提交
327
>
D
DCloud_LXH 已提交
328
> 具体请查看 [页面生命周期](../page.md#lifecycle)
D
DCloud_LXH 已提交
329 330 331

示例 [详情](<!-- VUEJSON.E_lifecycle.component_ChildComponentOptions.gitUrl -->)

D
DCloud_LXH 已提交
332
::: preview <!-- VUEJSON.E_lifecycle.component_component-options.webUrl -->
D
DCloud_LXH 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453

> 选项式 API

<!-- VUEJSON.E_lifecycle.component_ChildComponentOptions.code -->

> 组合式 API

<!-- VUEJSON.E_lifecycle.component_ChildComponentComposition.code -->

:::

## props

- 支持[对象方式](https://cn.vuejs.org/guide/components/props.html#props-declaration)声明。从 4.0+ 支持字符串数组方式声明。使用字符串数组方式声明时,所有 prop 类型均为 any | null。
- 仅支持直接在 `export default` 内部声明,不支持其他位置定义后,在 `export default` 中引用。
- 复杂数据类型需要通过 `PropType` 标记类型,[详见](https://cn.vuejs.org/guide/typescript/options-api.html#typing-component-props)
- `type` 不支持使用自定义的构造函数。

示例 [详情](<!-- VUEJSON.E_component-instance.props_props-options.gitUrl -->)

::: preview <!-- VUEJSON.E_component-instance.props_props-options.webUrl -->
> 选项式 API

<!-- VUEJSON.E_component-instance.props_props-options.code -->

> 组合式 API

<!-- VUEJSON.E_component-instance.props_props-composition.code -->

:::

## ref

`uni-app js 引擎版`中,非 `Web端` 只能用于获取自定义组件,不能用于获取内置组件实例(如:`view``text`)。\
`uni-app x` 中,内置组件会返回组件根节点的引用,自定义组件会返回组件实例。

**注意事项:**
- 如果多个节点或自定义组件绑定相同 `ref` 属性,将获取到最后一个节点或组件实例的引用。
-`v-for` 循环时,绑定 `ref` 属性会获取到节点或组件实例的集合。
-`uni-app x` 中,要访问 `$refs` 中的属性,需要使用索引方式。

示例 [详情](<!-- VUEJSON.E_component-instance.refs_refs-options.gitUrl -->)

::: preview <!-- VUEJSON.E_component-instance.refs_refs-options.webUrl -->
> uni-app x(选项式)

<!-- VUEJSON.E_component-instance.refs_refs-options.code -->

> uni-app x(组合式)

<!-- VUEJSON.E_component-instance.refs_refs-composition.code -->

> uni-app js 引擎版

```vue
<template>
	<view>
		<text ref="textRef">text node</text>
		<Foo ref="fooRef" />
	</view>
</template>

<script lang="ts">
  import type { ComponentPublicInstance } from 'vue'

	export default {
		onReady() {
			const text = this.$refs.textRef as Element // 仅H5端支持
			const foo = this.$refs.fooRef as ComponentPublicInstance
		}
	}
</script>
```
:::

## 自定义组件 v-model 绑定复杂表达式 @v-model-complex-expression

自定义组件 `v-model` 绑定复杂表达式时,需要通过 `as` 指定类型(仅App-Android 平台)。

::: preview
> 选项式 API
```ts
<template>
  <input v-model="obj.str as string" />
</template>

<script lang="uts">
	type Obj = {
		str : string
	}
	export default {
		data() {
			return {
				obj: {
					str: "str"
				} as Obj
			}
		}
	}
</script>
```
> 组合式 API
```ts
<template>
  <input v-model="obj.str as string" />
</template>

<script setup lang="uts">
  type Obj = {
    str: string
  }
  const obj = reactive({
      str: "str"
    } as Obj)
</script>
```
:::


## 作用域插槽的类型 @scoped-slot-type

D
DCloud_LXH 已提交
454
示例 [详情](<!-- VUEJSON.E_built-in.special-elements_slots_child-options.gitUrl -->)
D
DCloud_LXH 已提交
455 456

作用域插槽需在组件中指定插槽数据类型
D
DCloud_LXH 已提交
457
::: preview <!-- VUEJSON.E_built-in.special-elements_slots_child-options.webUrl -->
D
DCloud_LXH 已提交
458 459
> 选项式 API

D
DCloud_LXH 已提交
460
<!-- VUEJSON.E_built-in.special-elements_slots_child-options.code -->
D
DCloud_LXH 已提交
461 462 463

> 组合式 API

D
DCloud_LXH 已提交
464
<!-- VUEJSON.E_built-in.special-elements_slots_child-composition.code -->
D
DCloud_LXH 已提交
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502

:::

## 递归组件

实现递归组件时不要使用组件 import 自身的写法,直接在模板内使用组件名即可。

```vue
// component-a.uvue
<template>
  <view>
    <text>component-a::{{text}}</text>
    <component-a v-if="!end" :text="text" :limit="limit-1"></component-a>
  </view>
</template>

<script>
  // import componentA from './component-a' // 错误用法
  export default {
    name: "component-a",
    props: {
      text: {
        type: String,
        default: ''
      },
      limit: {
        type: Number,
        default: 2
      }
    },
    computed: {
      end() : boolean {
        return this.limit <= 0
      }
    }
  }
</script>
```