jQuery Ajax:pdf响应

时间:2012-05-16 21:36:08

标签: php jquery html ajax mime-types

我有一个链接,当用户点击它时,他会得到一个PDF。在jQuery中,我创建一个POST ajax调用服务器来获取PDF。响应是PDF,具有正确的内容标题等,通常会导致浏览器打开Reader插件,或允许用户保存PDF。但就我而言,这是行不通的。有没有办法设置数据内容类型,或将内容类型设置为PDF?

我的ajax电话:

$('#sf_getpdf').click(function() {

 $.ajax({    //create an ajax request to load_page.php

        type: "POST",

        url: "index.php?route=sale/order/superfaktura_getpdf&token=<?php echo $token; ?>",

        data: 'invoice_id=<?php echo $invoice_id; ?>&sf_token=<?php echo $sf_token ?>',  //with the page number as a parameter

        dataType: "text",   //expect html to be returned


        success: function(msg){



            if(parseInt(msg)!=0)    //if no errors

            {

            document.write(msg)
            }

        }

    });

});

Firebug,回复: Firebug

浏览器中的响应......

response in browser

我已经尝试在服务器中设置内容类型,但没有成功:

content-type in server

编辑:执行此操作不需要Ajax。

<a id="adr_stitok" target="_blank" href="index.php?route=sale/order/superfaktura_getpdf&token=<?php echo $token; ?>&invoice_id=<?php echo $invoice_id; ?>&sf_token=<?php echo $sf_token ?>" >Download</a></td>

会做的事情。

2 个答案:

答案 0 :(得分:5)

确保您的服务器端返回可下载的内容并提交到该文件,例如:

            //$.download('path', 'data' [, 'post'])
            $.download = function(url, data, method) {
                //url and data options required
                if(url && data) {
                    var form = $('<form />', { action: url, method: (method || 'get') });
                    $.each(data, function(key, value) {
                        var input = $('<input />', {
                            type: 'hidden',
                            name: key,
                            value: value
                        }).appendTo(form);
                    });
                return form.appendTo('body').submit().remove();
                }
            throw new Error('$.download(url, data) - url or data invalid');
            };

$.download("index.php?route=sale/order/superfaktura_getpdf&token=<?php echo $token; ?>", {}, 'post')

答案 1 :(得分:0)

它不起作用,因为AJAX调用不会获取PDF并将其加载到浏览器中。这就是为什么它被称为XMLHttpRequest ..它只交换文本!