本文整理汇总了TypeScript中leancloud-jssdk.Query.descending方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Query.descending方法的具体用法?TypeScript Query.descending怎么用?TypeScript Query.descending使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类leancloud-jssdk.Query
的用法示例。
在下文中一共展示了Query.descending方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: code_query_comment_include_todoFolder
function code_query_comment_include_todoFolder(done){
let commentQuery: AV.Query = new AV.Query('Comment');
commentQuery.descending('createdAt');
commentQuery.limit(10);
commentQuery.include('targetTodoFolder');// 关键代码,用 includeKey 告知服务端需要返回的关联属性对应的对象的详细信息,而不仅仅是 objectId
commentQuery.find<AV.Object []>().then((comments)=>{
// comments 是最近的十条评论, 其 targetTodoFolder 字段也有相应数据
for(let comment of comments){
// 并不需要网络访问
let todoFolder = comment.get('targetTodoFolder');
}
},(error)=>{
});
}
示例2: code_query_orderby_on_multiple_keys
function code_query_orderby_on_multiple_keys(done){
let query: AV.Query = new AV.Query('Todo');
query.ascending('priority');
query.descending('createdAt');
}
示例3: code_query_orderby
function code_query_orderby(done){
let query: AV.Query = new AV.Query('Todo');
query.ascending('createdAt');
query.descending('createdAt');
}