- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 DOJO + Spring MVC,我调用 ExportPDF.html 来生成我的 pdf但由于我的脚本中的 xhr 函数,您在控制台中有这样的字符 @"x13&"#%"我认为这是我的 pdf。我如何在新网页中显示或允许客户端下载它?
这是我的 exporPDF.html Controller
@RequestMapping(value = "/exportarPDF", method = {
RequestMethod.GET, RequestMethod.POST })
private @ResponseBody
void exportarPDF(@ModelAttribute("someBean") somebean someBean,
BindingResult result,HttpServletRequest request,HttpServletResponse response) throws Exception {
response.setContentType("application/pdf");
JasperReport mainReporte = (JasperReport) JRLoader.loadObject(mainJasper);
JasperPrint mainPrint = JasperFillManager.fillReport(mainReporte, parameters, new JRBeanCollectionDataSource(SOMELIST));
ServletOutputStream output = response.getOutputStream();
JasperExportManager.exportReportToPdfStream(mainPrint, output);
output.close();
}
我的 pdf 生成很棒,但我可以在页面中看到或下载它,请帮助我
这是我的脚本方法
xhr("exportarPDF.html", {
query : {
someValue: This Value is received well in the Spring Controller
},
handleAs : "json",
method : "post"
}).then(function(data) {
//I thinks this data is my pdf!
}, function(err) {
alert("Error Interno");
}, function(evt) {
// Handle a progress event from the request if the
// browser supports XHR2
});
这是我用 firebug 进行的调试
最佳答案
我也遇到过这种情况。正如 XMLHttpRequest to open PDF in browser 中的回答“如果您查询的 URL 实际上返回 PDF 数据,则无法通过 xhr 执行此操作。”请参阅链接以获取解释。我所做的是将生成的 pdf 保存在服务器上并将其名称放入 cookie 中。收到回复时,我验证它是一个 pdf(通过检查是否 resp.headers('Content-Type')=='application/pdf'
)。然后我调用了另一个 url,它使用 window.open 呈现 pdf。使用第二个参数('_self')以便不会打开新选项卡。
if (isPDF(response))
{
var url=$cookies['fileurl'].substring(1,$cookies['fileurl'].length-1);
$window.open('/ws/print?action='+url,'_self');
delete $cookies['fileurl'];
return;
}
关于javascript - 调用 jasper PDF 并向客户端显示或能够下载它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22180309/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!