6

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

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

4

1 回答 1

11

如果您不知道从某处收到的 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;
于 2012-12-29T17:12:51.783 回答