我是Mongo的新手,需要找到某些键具有特定价值的项目,例如:
{
"_id" : 685,
"group" : {
"id" : 684,
"title" : {
"en" : "English title"
}
}
}
所以在这种情况下,我需要找到组ID = 684的项目。
非常感谢
答案 0 :(得分:1)
尝试以下查询:
ThdSafeFormat(const aFormat: string; const aArgs: array of const): string;
var
FormatSettings: TFormatSettings;
begin
GetLocaleFormatSettings(LOCALE_USER_DEFAULT, FormatSettings);
Result := Format(aFormat, aArgs, FormatSettings);
end;
这使用 dot notation 来访问嵌入的文档密钥。