如何使用API​​ Connect中的网关脚本将JSON转换为纯文本

时间:2018-04-09 15:19:30

标签: javascript json

我正在尝试将JSON数据转换为纯文本。

apim.readInputAsJSON(function (error,buffer) 
  if (error) {  
    console.log("Failed to read data in JSON format"); 
  } else { 
    var res = JSON.stringify(buffer);session.output.write(res);    
    apim.output('text/plain');  
  }
});

但我得到JSON而不是文本格式

{ "hubChallenge": "Done"}

1 个答案:

答案 0 :(得分:0)

试试这个

apim.readInputAsJSON(function (error,buffer) 
{   if (error) {  
console.log("Failed to read data in JSON format"); 
 }else { 
var res = JSON.stringify(buffer);session.output.write(buffer.hubChallenge || res.hubChallenge);    
 apim.output('text/plain');  }});