我对 jsreport 引擎有以下请求:
$.ajax({
method: "POST",
contentType: "application/json",
dataType: "jsonp",
url: "http://localhost:5488/api/report",
data: {
template: {
shortid: "ry6HoQRee"
},
data: {
"D": "5"
}
},
success: function (s) {
window.open("data:application/pdf,base64," + escape(s.responseText));
},
error: function (s) {
console.log(s);
}
});
但是我找不到在报告模板中阅读它的方法:
<span>{{data.D}}</span>
如何引用 POST 正文中的数据对象