gpt4 book ai didi

json - SuperObject - 全部提取

转载 作者:行者123 更新时间:2023-12-03 15:20:10 25 4
gpt4 key购买 nike

如何从通用 JSON 获取所有“id”成员值不知道它的结构。因为它非常复杂并且有很多子对象。它必须循环遍历所有子对象。

再次针对那些不断询问示例 JSON 在哪里的人。我的问题是如何从包含此成员的任何通用 JSON 中提取我的案例“id”中的成员值

最佳答案

如果您不知道从某处收到的 JSON 的结构,请务必注意,JSON“只是”一种复合模式,您可以像任何其他复合结构一样遍历它。以下示例遍历 JSON 文本中的完整结构并打印任何名为“id”的成员的路径。

procedure ParseJSON;
var
JSONText: string;
JSON: ISuperObject;
begin
// Retrieve JSON as a string into JSONText variable any way you like.
JSON := SO(JSONText);
ProcessObject(JSON.AsObject);
end;

procedure ProcessObject(const aAsObject: TSuperTableString; const aPrefix: string = '');
var
Names: ISuperObject;
Name: string;
Items: ISuperObject;
Item: ISuperObject;
idx: Integer;
Value: string;
ArrayItem: ISuperObject;
begin
if Assigned(aAsObject) then
begin
Names := aAsObject.GetNames;
Items := aAsObject.GetValues;

for idx := 0 to Items.AsArray.Length - 1 do
begin
Name := Names.AsArray[idx].AsString;
Item := Items.AsArray[idx];
if Item.DataType = stObject then
Value := '<Object>'
else if Item.DataType = stArray then
Value := '<Array>'
else
Value := Item.AsString;

if SameText(Name, 'id') then
WriteLn(Format('%s: %s', [aPrefix + Name, Value]));

if Item.DataType = stArray then
for ArrayItem in Item do
ProcessObject(ArrayItem.AsObject, aPrefix + Name + '.');

if Item.DataType = stObject then
ProcessObject(Item.AsObject, aPrefix + Name + '.');
end;
end;
end;

关于json - SuperObject - 全部提取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14082886/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com