本文整理匯總了TypeScript中leancloud-jssdk.Query.exists方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Query.exists方法的具體用法?TypeScript Query.exists怎麽用?TypeScript Query.exists使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類leancloud-jssdk.Query
的用法示例。
在下文中一共展示了Query.exists方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: code_query_where_keys_exist
function code_query_where_keys_exist(done){
let aTodoAttachmentImage : AV.File = AV.File.withURL('attachment.jpg','http://www.zgjm.org/uploads/allimg/150812/1_150812103912_1.jpg');
let todo: AV.Object = new AV.Object('Todo');
todo.set('images',aTodoAttachmentImage);
todo.set('content','記得買過年回家的火車票!!!');
todo.save();
let query : AV.Query = new AV.Query('Todo');
query.exists('images');
query.find<AV.Object []>().then((results)=>{
// results 返回的就是有圖片的 Todo 集合
},(error)=>{
});
// 使用空值查詢獲取沒有圖片的 Todo
query.doesNotExist('images');
}