let query = uni.createSelectorQuery(); this.$nextTick(() => { query.select('.posterContainer').boundingClientRect(rect=>{ console.log(rect); this.drawPoster(rect) this.canvasHeight = rect.height this.canvasWidth = rect.width }).exec() })
4 个回复
狮王电竞 - 游戏平台
请问找到解决方案了吗
7***@qq.com
uni.createSelectorQuery().in(this)
1***@163.com - 野丶兽
let query = uni.createSelectorQuery();
this.$nextTick(() => {
query.select('.posterContainer').boundingClientRect(rect=>{
console.log(rect);
this.drawPoster(rect)
this.canvasHeight = rect.height
this.canvasWidth = rect.width
}).exec()
})
我是大钊
为什么宽、高一直为0?