We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current entrySet() implementation of the Map inside the JsonNodeValueResolver.toMap() function didn't resolve the value of the entry. (source)
For example: With input { "array": [ {"foo":"bar"},{"foo":"biz"} ] } and template {{ join this.array ", " }}
{ "array": [ {"foo":"bar"},{"foo":"biz"} ] }
{{ join this.array ", " }}
The current implementation will output {foo="bar"},{foo="biz"} Instead we want the output become {foo=bar},{foo=biz}
{foo="bar"},{foo="biz"}
{foo=bar},{foo=biz}
Task: Update the current entrySet() implementation of the Map inside the JsonNodeValueResolver.toMap() function to resolve the entry value.
The text was updated successfully, but these errors were encountered:
Recursively resolve JSON Object nodes during entry iteration (jknack#969
0b94900
)
Candidate in #965.
Sorry, something went wrong.
carusology
No branches or pull requests
The current entrySet() implementation of the Map inside the JsonNodeValueResolver.toMap() function didn't resolve the value of the entry. (source)
For example:
With input
{ "array": [ {"foo":"bar"},{"foo":"biz"} ] }
and template{{ join this.array ", " }}
The current implementation will output
{foo="bar"},{foo="biz"}
Instead we want the output become
{foo=bar},{foo=biz}
Task:
Update the current entrySet() implementation of the Map inside the JsonNodeValueResolver.toMap() function to resolve the entry value.
The text was updated successfully, but these errors were encountered: