-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
picker组件数据更新的时候跳动 和 picker中找到一处代码问题。 #2457
Labels
Comments
airyland
added a commit
that referenced
this issue
Jan 30, 2018
popup-picker 目前仅支持全量数据列表,因为不能确定新数据列表和旧数据列表的差别(列数,数量),所以是直接重新渲染,暂不支持部分更新。 |
跳动的问题我也遇到,我尝试修复了一下 |
我这边也遇到了这个问题,回溯代码发现是render函数中的
这段代码导致的。把它注释掉就不会闪动了。 |
这个问题现在解决了吗 |
1 similar comment
这个问题现在解决了吗 |
并没有 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
--------------------- 重点内容 ----------------------
在picker组件中,异步更新数据(例如通过网络请求获取的picker数据内容)。每次在更新数据的时候,界面要跳一下。甚至连官方的demo中也会跳一下,那种从下面稍稍往上滑一点的跳动。请问有没有办法让它更新数据的时候不跳一下。
问题图示1:
问题图示2:
-------------------- 下面为次要内容 ---------------------
今天在解决上面的问题的时候发现picker组件中的一处问题。
问题描述:
在picker中定义了属性
itemClass
在渲染数据的
render
方法中new Scroller
的时候传入的option
对象中的itemClass
使用的是:_this.item_class
问题所在:
不应该是
_this.item_class
而是_this.itemClass
图示:
The text was updated successfully, but these errors were encountered: