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.
这在很大程度上是一个 ember.js 菜鸟问题,但我找不到任何谈论它的文章。所有讨论从服务器获取数据的教程都讨论了 findAll() 命令。我不知道会返回所有数据的第 3 方 api。
如果我想使用 youtube api,它将返回结果的第一页,但不是所有数据。您如何处理返回分页数据的 api?或者在最近活动的提要中将视频添加到 youtube 时返回新数据的 api?
emberJS 有一些分页 mixin 可用,其中之一是:
https://gist.github.com/tchak/1559628
由 emberJS 的主要贡献者之一撰写。