JSONObjectSize and ExtractJSONStructure

Just starting out? Need help? Post your questions and find answers here.
hichem
Posts: 4
Joined: Wed May 06, 2015 8:44 am

JSONObjectSize and ExtractJSONStructure

Post by hichem »

hi there,
i'm very happy to join the community of spiderbasic
i have some issues with the json lib please help.
1. seems like JSONObjectSize is not working, i launched the example relative to it but the debugger don't show anything.
2. let's say that i have this structures

Code: Select all

Structure bar
  item2.i
EndStructure  

Structure foo
  item.i
  List items.bar()
EndStructure  

global var.foo


i want to use ExtractJSONStructure to fill the bar list in the foo

ExtractJSONStructure(JSONValue, @foo\bar() ,bar) won't work !
thank you.