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
If you construct a string of the JSON payload using dump() and then use parse() to deserialize it, the contents of the former object don't match the latter when there are escape characters. Example pseudo-code
Here parsed_fields["three"] == std::string("three \\\"four\\\""). If this is expected, then what should be done to parsed_fields in this case to recover the original contents?
The text was updated successfully, but these errors were encountered:
If you construct a string of the JSON payload using
dump()
and then useparse()
to deserialize it, the contents of the former object don't match the latter when there are escape characters. Example pseudo-codeHere
parsed_fields["three"] == std::string("three \\\"four\\\"")
. If this is expected, then what should be done toparsed_fields
in this case to recover the original contents?The text was updated successfully, but these errors were encountered: