You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my script i have 2 JSON.Load() function, the 1st one works and the 2nd don't. Similar to JSON.Dump... If i use more than 1 JSON function then all except the first one wont work.
Example:
content is a json string
json := JSON.Load(content)
invoice := json.invoice
msgbox, % invoice.Length () ; -> this work, shows the right length
line := StrSplit(sp, " ")
new := {}
new.sp := line[1]
new.sl := line[2]
view := JSON.Dump(new)
msgbox, % view ; -> this dont work, doesnt show anything
if i delete this line: json := JSON.Load(content)
then the JSON.Dump work
Thank you.
The text was updated successfully, but these errors were encountered:
In my script i have 2 JSON.Load() function, the 1st one works and the 2nd don't. Similar to JSON.Dump... If i use more than 1 JSON function then all except the first one wont work.
Example:
content is a json string
json := JSON.Load(content)
invoice := json.invoice
msgbox, % invoice.Length () ; -> this work, shows the right length
line := StrSplit(sp, " ")
new := {}
new.sp := line[1]
new.sl := line[2]
view := JSON.Dump(new)
msgbox, % view ; -> this dont work, doesnt show anything
if i delete this line: json := JSON.Load(content)
then the JSON.Dump work
Thank you.
The text was updated successfully, but these errors were encountered: