Dafrok / vue-iscroll-view

IScroll-view component for Vue 2.x
https://dafrok.github.io/vue-iscroll-view
MIT License
148 stars 26 forks source link

一直遇到高度refresh后也无法滚动问题。 #7

Closed bulolo closed 7 years ago

bulolo commented 7 years ago

按照iscroll和文档,mounted中调用 this.$refs.scrollView.refresh() 但是在真机和谷歌浏览器 还是滚动不了。实在排查不出什么原因。 目前问题集中在,当不给dom指定高度,调用了refresh,但是依旧滚动不了, 只用每个dom都有高度的情况,才能滚动。能否请教下是否是我操作上错误。

Dafrok commented 7 years ago

nextTick

bulolo commented 7 years ago

this.$nextTick(function (){ this.$refs.scrollView.refresh() })

还是没效果额

bulolo commented 7 years ago

页面并没有动态数据更新界面。是一个collectionview. screenshot 只要当中没有设置高度。整个就动不了。

Dafrok commented 7 years ago

只要视图层在异步队列中触发重排导致高度变化,就必须在这个tick后执行refresh。比如你的图片的加载就是异步的,我猜是这个原因。

Dafrok commented 7 years ago

太久没有收到反馈,先close掉了。

hoythan commented 7 years ago

不要太完美