我在iPhone应用程序中使用FatFractal作为后端。一直在搜索网络和FatFractal文档,没有任何运气。 我想从一个抓包中检索一个集合中的最新对象:
NSArray *result = [[Store ff] grabBagGetAllForObj:thread grabBagName:@"messages" withQuery:@"Get the latest inserted object" error:&err];
答案 0 :(得分:1)
执行此操作的最佳方法可能是自己构建完整查询,然后使用标准getArrayFromUri:
方法。举个例子,这看起来像:
FatFractal *ff = [Store ff];
NSString *query = [NSString stringWithFormat:
@"%@/messages?sort=createdAt desc&start=0&count=1",
[ff metaDataForObj:thread].ffUrl];
NSArray *result = [ff getArrayFromUri:query];
有关详细信息,请参阅http://fatfractal.com/prod/docs/queries/#sorting-and-limiting-results。