以下代码中的 .from(20).fetch(10) 是啥?
Posted
技术标签:
【中文标题】以下代码中的 .from(20).fetch(10) 是啥?【英文标题】:what is the .from(20).fetch(10) from the below code in play framework以下代码中的 .from(20).fetch(10) 是什么? 【发布时间】:2015-03-13 15:54:49 【问题描述】:在这行代码中,
List<User> users = User.find("byEmailLike", "alexander@%") .from(20).fetch(10);
.from(20).fetch(10)
是什么?
【问题讨论】:
【参考方案1】:直观的用法:从20开始获取10条记录
文档中也有描述,你应该看看there
List<Post> posts = Post.all().from(50).fetch(100); // 100 max posts start at 50
【讨论】:
以上是关于以下代码中的 .from(20).fetch(10) 是啥?的主要内容,如果未能解决你的问题,请参考以下文章
为啥我们需要 bookshelf.js 的 fetch() 方法中的新对象?