我正在尝试将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"}
答案 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'); }});