提交 0260f284 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

docs(UniPage): 优化 this.$page 获取页面实例说明

上级 1d60ceea
......@@ -87,6 +87,10 @@ const page = pages[pages.length-1]
const dialogPages = page.getDialogPages()
// 2. 在 dialogPage 中通过 this.$page 获取 dialogPage 实例
// 选项式 API
const dialogPage = this.$page
// 组合式 API
const currentInstance = getCurrentInstance()
const dialogPage = instance?.proxy?.$page
```
* `UniDialogPage` 实例的 `getElementById` 方法仅 `Android` 端支持,其他端返回 `null`
......@@ -51,3 +51,13 @@ UniPage对象强化了开发者对页面的管理功能,并且支持在uts插
<!-- UTSAPIJSON.general_type.name -->
<!-- UTSAPIJSON.general_type.param -->
## Tips
* `4.32` 新增支持通过 `this.$page` 获取当前 `UniPage` 实例, 代码示例:
```js
// 选项式 API
const dialogPage = this.$page
// 组合式 API
const currentInstance = getCurrentInstance()
const dialogPage = instance?.proxy?.$page
```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册