Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Vaadin Web 应用程序中,我需要在表格(或网格)中显示 10,000 多个用户信息。UI 中显示的用户信息是从我们自己的 Spring REST Web 服务中检索的。
我怎样才能做到这一点?...
谢谢
步骤: 1. 从您的 REST 服务中读取用户列表。2. 创建一个 GRID 并将 User 的 BeamItemContainer 附加到它。
Grid 将负责显示用户。您不必为延迟加载做任何特别的事情。grid 将通过在 UI 上仅显示所需的行并在组件级别懒惰地获取它来处理它。
PS:在滚动上加载数据时,网格比表格非常平滑。如果您有太多行,则更喜欢网格而不是表格。