我的php文件:example_061.php创建PDF返回,一切正常。
现在我想用jQuery AJAX调用该文件,以便在我的屏幕上显示,然后尝试:
$("#proba").click(function() {
//in here we can do the ajax after validating the field isn't empty.
$.ajax({
url: "tcpdf/examples/example_061.php",
type: "POST",
async: true,
data: {
ime: $("#ime").val(),
pozicija: $("#pozicija").val(),
jmbg: $("#jmbg").val()
}, //your form data to post goes here as a json object
dataType: "html",
success: function(response) {
window.open('example_061.pdf');
},
});
});
一切都很好,所以成功功能工作我收到提醒信息,但我不能下载或在屏幕上获取PDF文件。我怎么能这样做?
答案 0 :(得分:2)
您无需使用AJAX下载文件。如果设置了content-disposition
标题,则会下载它,并且不会重新加载当前页面。
只需将其添加到创建PDF的php脚本中:
header('Content-Disposition: attachment; filename=' . $MyFileName);
而不是AJAX,使用常规的锚标记链接:
<a href="tcpdf/examples/example_061.php">Download</a>
正如评论中提到的那样,如果您需要发帖,您仍然可以使用具有相同效果的简单表格:
<form method="POST" ACTION="tcpdf/examples/example_061.php">
<input type="hidden" name="myPostItem" value="My POSt VALUE" />
<input type="submit" value="download">
</form>