Hallo,
ich habe hier ein Array in JSON Notifikation:
Code:
var map = [['block', 'forest_out_1_1', 'Wald', '', 1, 1], ['block', 'forest_out_1_2', 'Wald', '', 1, 1]]
Doch wie schaffe ich es dieses Array in Delphi einzulesen. Benutze die SuperObject-Datei.
Mein Delphi Code sieht z.B. so aus:
Delphi-Quellcode:
obj : TSuperArray;
IDs := http.Post('
http:\\localhost\bg\map.js',param);
ShowMessage(ids);
obj := SO(IDs).AsArray;
ShowMessage(IntToHex(Integer(obj),8));
ShowMessage(obj.O[0].AsArray[0].S['
0']);
Lustigerweise ist obj immer nil. Aber wieso?
mfg Janek