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.
我们需要一个完全没有问题ListView的Win8应用程序GroupedItems. ,但我们需要dataSources为每个组提供不同的。
ListView
Win8
GroupedItems.
dataSources
例如,我们需要三组:
/categories.php?limit=10
/articles.php?limit=none&offset=50&start=0
提前致谢!!!
您需要将数据合并到一个数据源中,然后根据该信息进行分组。这可以通过管理 aWinJS.Binding.List并使用分组功能将数据放入其中来完成,或者如果您想变得非常先进,请使用VirtualizedDataSource. 我在以下问题中的回答链接到该信息的适当位置。
WinJS.Binding.List
VirtualizedDataSource
如何在 WinJS 应用程序中将多个不同的 JSON 对象添加到单独的列表中?