09.12.2020, 20:01
(This post was last modified: 09.12.2020, 20:07 by Erwin van der Zwart.)
That does not make sense (: and never seen an issue that looks like that..
The script is running top to bottom and when plaats = data.plaats works you can use the var plaats or data.plaats, but if it fails then neither work as plaats is dependent of data.plaats
Your code grp.checkwrite('x/x/x', data.plaats) is enough and there is no need to assign it to a var first..
What you say can be right if you use grp.write('x/x/x', plaats) without plaats = data.plaats, but your command is grp.write('x/x/x', data.plaats) and is using the parsed json data directly..
The script is running top to bottom and when plaats = data.plaats works you can use the var plaats or data.plaats, but if it fails then neither work as plaats is dependent of data.plaats
Your code grp.checkwrite('x/x/x', data.plaats) is enough and there is no need to assign it to a var first..
What you say can be right if you use grp.write('x/x/x', plaats) without plaats = data.plaats, but your command is grp.write('x/x/x', data.plaats) and is using the parsed json data directly..