0
我正嘗試從連接到jsreport的角度應用程序生成pdf報告。我的客戶端應用程序通過以這種方式將示例數據傳遞到報表服務器來進行POST調用。如何接收從客戶端應用程序傳遞到jsreport服務器的數據
$http.post('http://localhost:5488/api/report', {
'template': {
'shortid': 'SypJSv75e',
"data": {"name": "John Doe"}
}
})
.success(function (response) {
console.log(response)
});
正如你在上面的代碼中看到的,我將{「name」:「John Doe」}傳遞給報表服務器。
在報表服務器上,這是我在自定義腳本部分中的代碼。
function beforeRender(req, res, done) {
req.data.generatedOn = new Date();
done();
}
如何從客戶端應用程序傳遞的jsreport中接收數據?