Is it a bug or do I do something wrong? Try to add parameters to a value field.
Maybe it's very easy, I really don't understand it...
See picture.
This is the return value:
'Lezer is: ${ctx["root"]["request"]["body"].namereader}'
+
This is the result:
Lezer is: ${ctx["root"]["request"]["body"].namereader}Dit is het resultaat: Albert
How can I add the body parameters to a value field?
#
・buildship-help
See picture.
This is the return value:
'Lezer is: ${ctx["root"]["request"]["body"].namereader}'
+
Dit is het resultaat: ${ctx["root"]["request"]["body"].namereader}This is the result:
Lezer is: ${ctx["root"]["request"]["body"].namereader}Dit is het resultaat: Albert
How can I add the body parameters to a value field?
#

Solution
In the first string, you'll require to add back ticks
instead of single quotes ' '. Lezer is: ${ctx["root"]["request"]["body"].namereader} just like you did in second line. Then it will work.
