0

我有一个使用转换 api v2 的工作 web 到 pdf 按钮。

<form action="https://v2.convertapi.com/web/to/pdf?Secret=XXX&download=attachment" method="post" enctype="multipart/form-data">
    <input type="hidden" name="Url" value="https://www.zg.ch/behoerden/baudirektion/statistikfachstelle/daten/gemeindeportraits.html" />
    <input type="hidden" name="FileName" value="Portrait" />
    <input type="hidden" name="ConversionDelay" value="5" />
    <input type="hidden" name="ViewportWidth" value="1200" />
    <input type="hidden" name="ViewportHeight" value="1887" />
    <input type="hidden" name="PageSize" value="a4" />
    <input type="submit" value="Portrait als PDF ausgeben"/>
</form>

根据页面上的选择,使用 jquery 更改 url。那部分也有效。

问题是人们通常需要提交两次甚至更多才能获得他们想要的所有 pdf,并获得一条浏览器消息,警告他们将要再次提交表单。有什么办法可以避免这个消息?

一种方法是为每个可能的文件创建一个按钮,并根据使用 javascript/jquery 的选择隐藏显示整个按钮,但这似乎效率低下。

由于我在 CMS 中工作,因此我仅限于使用 html 和 javascript。

谢谢你的帮助。

4

2 回答 2

2

我不确定,但是一旦我遇到类似的问题。我通过将随机变量或时间戳与 URL 一起传递来解决它,即

https://v2.convertapi.com/web/to/pdf?Secret=XXX&download=attachment&ignorethisparam=currenttimestamp
于 2018-04-16T09:34:49.560 回答
0

谢谢@manu-avs,你的回复让我找到了解决方案。在我的例子中,我使用 jQuery 向 action-url 添加了一个随机参数。

$('#downloadPdf').submit(function(ev) {
    ev.preventDefault(); // to stop the form from submitting
    $('#downloadPdf').attr('action', 'https://v2.convertapi.com/web/to/pdf?Secret=XXX&download=attachment&ignoreparam='+ev.timeStamp);  //to add random number parameter to action-url
    this.submit(); // submit with new url
});
于 2018-04-16T10:42:55.773 回答