我正在尝试访问jsreport api来呈现报告模板,但出现以下错误:
{
body: "{"body":"\"{\\\"template\\\":{\\\"shortid\\\":\\\"B1z8vSImQ\\\"}}\"","status":400,"statusCode":400}",
code: 500,
headers: {
connection: "close",
content-length: "99",
content-type: "application/json; charset=utf-8",
date: "Mon, 16 Jul 2018 14:22:54 GMT",
etag: "W/"63-y7OYa6jmSZpY//j8j8VDr2CKCZg"",
server: "nginx/1.15.0",
x-powered-by: "Express"
}
}
这是我如何调用api:
const options = {
method: 'POST',
//strictSSL: false,
headers: {
'Authorization': 'Basic ' + hash,
'Content-Type': 'application/json',
},
body: JSON.stringify({
template: { shortid: 'B1z8vSImQ' }
}),
// auth: {
// username,
// password
// }
}
requestify.request('https://gabrielsch.jsreportonline.net/api/report', options)
.then(response => {
})
.catch(error => console.log(error))
有人知道会发生什么吗?我在任何地方都找不到任何资源。预先谢谢你
答案 0 :(得分:1)
您正在复制JSON.stringify
。像这样删除它:
const options = {
method: 'POST',
headers: {
'Authorization': 'Basic ' + hash,
'Content-Type': 'application/json',
},
body: {
template: { shortid: 'B1z8vSImQ' }
}
}