在我的remodeMethod中,我将传入的数据设置为如下字符串:
{
http: {path: '/_html', verb: 'post'},
accepts: [
{arg: 'html', type: 'string', http: {source: 'body'}, description: 'HTML code.', required: true }
],
returns: {arg: 'data', type: 'object'}
}
我的请求标题是'内容类型':' text / plain',我的请求正文是纯文本。
当我的函数捕获变量时,我将console.log(html)放在第一行。 它显示[object Object]。
但我希望纯文字。我能做什么? 我尝试了JSON.stringify(html),但它返回" [object Object]"。