<template>
<view>
<canvas
type="webgl"
ref="mapDiv"
canvas-id="mapDiv"
id="mapDiv"
style="width: 100%; height: 350px;"
</canvas>
<button @tap="check">查看canvas节点</button>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
check:function(){
let view = uni.createSelectorQuery().in(this).select("#mapDiv");
view.node().exec(res => {
console.log(res);
});
}
}
}
</script>
<style>
</style>
上面是代码,点击查看canvas节点 按钮,小程序能正常返回节点,APP不行,有办法在APP中获取canvas节点吗?
hy_random (作者)
github上提交文档相关pr不是我,app端有支持的计划么?现在卡在这里了
2020-01-07 12:03
mingyigg
你好,请问这个什么时候支持吗?这个特性等了好久
2022-03-05 17:04