本文整理匯總了TypeScript中leancloud-storage.Query.equalTo方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Query.equalTo方法的具體用法?TypeScript Query.equalTo怎麽用?TypeScript Query.equalTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類leancloud-storage.Query
的用法示例。
在下文中一共展示了Query.equalTo方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('AVRole#addUser', function (done) {
try {
// 示例代碼-Start
// 構建 AV.Role 的查詢
let roleQuery = new AV.Query(AV.Role);
roleQuery.equalTo('name', randomRolename)
roleQuery.find<AV.Role[]>().then(roles => {
// 如果角色存在
if (roles.length > 0) {
let administratorRole = roles[0];
roleQuery.equalTo('users', AV.User.current());
roleQuery.find<AV.Object[]>().then(userForRole => {
if (userForRole.length == 0) {//該角色存在,但是當前用戶未被賦予該角色
let userRoleRelation = administratorRole.getUsers();
userRoleRelation.add(AV.User.current());//為當前用戶賦予該角色
administratorRole.save<AV.Role>().then(result => {
chai.assert.isNotNull(result.id);
done();
}, error => {
if (error) throw 'error on add user';
});
}
}, error => {
if (error) throw 'error on find role';
});
} else {
// 該角色不存在,接下來創建該角色,並未當前用戶賦予該角色
let administratorRole = new AV.Role(randomRolename);//新建角色
let userRoleRelation = administratorRole.getUsers();
userRoleRelation.add(AV.User.current());//為當前用戶賦予該角色
administratorRole.save<AV.Role>().then(role => {
chai.assert.isNotNull(role.id);
done();
}, error => {
if (error) throw 'error save role and add user';
});
}
}, error => {
if (error) throw error;
});
// 示例代碼-End
}
catch (e) {
chai.assert.isNull(e);
}
});
示例2: it
it('AVRole#removeUser', function (done) {
try {
this.timeout(5000);
// 示例代碼-Start
// 構建 AV.Role 的查詢
let roleQuery = new AV.Query(AV.Role);
roleQuery.equalTo('name', randomRolename)
roleQuery.find<AV.Role[]>().then(roles => {
// 如果角色存在
if (roles.length > 0) {
let administratorRole = roles[0];
roleQuery.equalTo('users', AV.User.current());
roleQuery.find<AV.Object[]>().then(userForRole => {
if (userForRole.length > 0) {//該角色存在,並且當前用戶已被賦予該角色
let userRoleRelation = administratorRole.getUsers();
// 為當前用戶剝奪該角色
userRoleRelation.remove(AV.User.current());
administratorRole.save<AV.Role>().then(result => {
chai.assert.isNotNull(result.id);
done();
}, error => {
if (error) throw 'error on add user';
});
} else {
// 該用戶並未被賦予該角色
done();
}
}, error => {
if (error) throw 'error on find role';
});
}
}, error => {
if (error) throw error;
});
// 示例代碼-End
}
catch (e) {
chai.assert.isNull(e);
}
});