Scott recently added a third parameter to this function so you can save your incoming JSON right to the IFS. It's awesome.
However, now I'm finding I actually want to work with the incoming JSON a bit before saving it. Is there a command to write docNode, which I believe is a pointer (like yajl_val) to the IFS or would I need to convert that to a string and then do an IFS_WRITE?
Code:
docNode = yajl_stdin_load_tree(*on : errMsg : filename);
However, now I'm finding I actually want to work with the incoming JSON a bit before saving it. Is there a command to write docNode, which I believe is a pointer (like yajl_val) to the IFS or would I need to convert that to a string and then do an IFS_WRITE?
Comment