本文整理汇总了TypeScript中leancloud-jssdk.Query.get方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Query.get方法的具体用法?TypeScript Query.get怎么用?TypeScript Query.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类leancloud-jssdk.Query
的用法示例。
在下文中一共展示了Query.get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: code_get_todo_by_objectId
function code_get_todo_by_objectId(done){
let query : AV.Query = new AV.Query('Todo');
query.get<AV.Object>('57328ca079bc44005c2472d0').then((data)=>{
chai.expect(data.id).to.equals('57328ca079bc44005c2472d0');
done();
},(error)=>{
if(error) throw error;
done();
});
}
示例2: text_access_object_properties
function text_access_object_properties(done){
let query : AV.Query = new AV.Query('Todo');
query.get<AV.Object>('57328ca079bc44005c2472d0').then((todo)=>{
let priority : number = todo.get('priority');
let location : string = todo.get('location');// 可以指定读取的类型
let title = todo.get('title');// 也可以不指定读取的类型
// 获取三个特殊属性
let objectId : string = todo.id;
var updatedAt : Date = todo.updatedAt;
var createdAt : Date = todo.createdAt;
console.log(createdAt);
chai.expect(todo.id).to.equals('57328ca079bc44005c2472d0');
done();
},(error)=>{
if(error) throw error;
done();
});
}