提交 c496816d 编写于 作者: 辛宝Otto's avatar 辛宝Otto 🥊

docs: 补充 createSelectorQuery 组合式 API 写法

上级 f4648312
......@@ -19,6 +19,10 @@
**代码示例**
::: preview
> 选项式 API
```javascript
const query = uni.createSelectorQuery().in(this);
query
......@@ -30,6 +34,22 @@ query
.exec();
```
> 组合式 API
```javascript
import { getCurrentInstance } from 'vue';
const instance = getCurrentInstance();
const query = uni.createSelectorQuery().in(instance.proxy);
query
.select("#id")
.boundingClientRect((data) => {
console.log("得到布局位置信息" + JSON.stringify(data));
console.log("节点离页面顶部的距离为" + data.top);
})
.exec();
```
**注意**
- 支付宝小程序不支持 in(component),使用无效果
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册