【问题标题】:JSReport request errorJSReport请求错误
【发布时间】:2018-07-17 23:03:07
【问题描述】:

我正在尝试访问 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))

有人知道会发生什么吗?我在任何地方都找不到这方面的任何资源。提前谢谢你

【问题讨论】:

    标签: javascript node.js jsreport


    【解决方案1】:

    您正在重复JSON.stringify。像这样删除它:

    const options = {
        method: 'POST',  
        headers: {
            'Authorization': 'Basic ' + hash,
            'Content-Type': 'application/json',
        },
        body: {
            template: { shortid: 'B1z8vSImQ' }
        }
    }
    

    【讨论】:

    • 非常感谢,问题解决了。顺便说一句,你熟悉 jsreport api 吗?
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-01-04
    • 1970-01-01
    • 1970-01-01
    • 2018-08-09
    • 2019-07-28
    • 1970-01-01
    相关资源
    最近更新 更多