Hey, danke für deine schnelle antwort. Hast du vllt nen kleines beispiel oder nen Programm auschnitt wie man das umsetzt?
Code:
SLid:=TStringList.Create;
SLtitle:=TStringList.Create;
JsonValue := TJSonObject.ParseJSONValue(RESTResponse1.Content);
for i := 0 to JSonValue.InstanceSize-2 do
begin
SLid.Add(JsonValue.GetValue<string>('products['+ Inttostr(i) +'].id'));
SLtitle.add(JSonValue.GetValue<string>('products['+ Inttostr(i) +'].title'));
end;
So mache ich das zur zeit. Aber will halt das ID und title variable halten.
danke dir