よく理解できたら:
- ユーザーが禁止されている
device_id
を持っている場合 、次に彼をブロックします - ユーザーが
display_name
を禁止している場合 、次に彼をブロックします
その場合、彼がanonymous
であるかどうかは実際には問題ではありません。 かどうか。
let excludedUsernames, excludedDevices;
blockedUsers.forEach((e) => {
excludedUsernames.puhs({ e["display_name"] });
excludedDevices.push({ e["device_id"] });
});
query.$and.push({ 'display_name' : { $nin: excludedUsernames } });
query.$and.push({ 'device_id' : { $nin: excludedDevices } });
編集
query.$or.push({
$and: [
{ 'device_id' : { $nin: excludedDevices }},
{ 'display_name' : "anonymous" }
]
});
query.$or.push({ 'display_name' : { $nin: excludedUsernames } });