# SelectorQuery NodesRef.ref(function callback)
基础库 3.3.0 开始支持,低版本需做兼容处理。
小程序插件:支持
相关文档: 获取界面上的节点信息 scrollViewContext
# 功能描述
获取 Node
节点的 Ref 对象,可用于 worklet
函数内操作节点。仅 Skyline
下支持,Node
必须是非 virtual
类型。
# 参数
# function callback
回调函数,在执行 SelectorQuery.exec
方法后,返回节点 Ref 对象。
# 参数
# Object res
属性 | 类型 | 说明 |
---|---|---|
ref | Object | 节点对应的 Ref 对象 |
# 返回值
# SelectorQuery
# 示例代码
Page({
getNode() {
this.createSelectorQuery().select('.scrollable').ref(function(res){
console.log(res.ref) // 节点对应的 Ref 对象
}).exec()
}
})