SaberSola opened a new issue #1652:
URL: https://github.com/apache/incubator-shenyu/issues/1652


   for example: if you response body is a json like this:{
       "code":0,
       "msg":"sucess",
       "data":{
           "nameInfo":{
               "name":"test"
           },
           "body":{
               "age":"18"
           }
       }
   }
   you want to replace the  key of  parameters "name" to "realName",you can  
modify the json ,then the body json is
   {
       "code":0,
       "msg":"sucess",
       "data":{
           "nameInfo":{
               "realName":"test"
           },
           "body":{
               "age":"18"
           }
       }
   }
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to