0
아래 변환을 수행하고 싶습니다. 나는 데이터 직조에서 이스케이프 문자를 추가하는 데 어려움을 겪고 있습니다. 페이로드를 단일 문자열로 병합 할 수 있지만 이스케이프 문자를 추가 할 수는 없습니다.노새 데이터 위브 변환에서 이스케이프 문자를 추가하는 방법
입력
{
"request":{
"Id":"1111",
"channel":"ABC",
"useFilters":false
},
"need":{
"postcode":2222,
"Imp":"Mobile",
"additionalProducts":[
],
"isOwner":true,
"isMovingIn":true,
"movingDate":"2017-07-28",
"otherNeeds":[
"Food",
"Car"
]
},
"filter":{
"productType":[
],
"zone":[
],
"data":[
],
"speedTier":[
],
"recommendedPlans":true
}
}
출력이
{
"needs": {
"key": "capture_value",
"value": "{\"request\":{\"Id\":\"1111\",\"channel\":\"ABC\",\"useFilters\":false},\"need\":{\"postcode\":2222,\"Imp\":\"Mobile\",\"additionalProducts\":[],\"isOwner\":true,\"isMovingIn\":true,\"movingDate\":\"2017-07-28\",\"otherNeeds\":[\"Food\",\"Car\"]},\"filter\":{\"productType\":[],\"zone\":[],\"data\":[],\"speedTier\":[],\"recommendedPlans\":true}}"
}
}
사람이 위의 변환을 수행하는 방법을 제안시겠습니까? TIA