如何从动态生成的页面将数据发送到 PHP 脚本?

发布于 2024-10-14 15:33:20 字数 637 浏览 10 评论 0原文

我正在尝试在文档中使用 TCPDF 库 动态创建 PDF,非常类似于 这个。 PDF 的输出是 HTML,我可以用变量中的字符串表示,如上面的示例所示:

$html = <<<EOD
<html>bar</html>
EOD;

我想要的内容是 Wordpress 发布元数据,我使用 更多字段 插件如下:

<?php more_fields('foo','','',1); ?>

...输出一些我在插件设置中指定的 HTML。除非我错了,否则我无法在不编写自己的插件的情况下直接从 PDF 生成脚本再次进行该调用。那么如何使用 JS 将 HTML 从可点击的“查看 PDF”链接发送到脚本呢?请注意,这是一整页的文本,而不仅仅是几个字符,如果这很重要的话。

I'm trying to dynamically create a PDF using the TCPDF library in a document very much like this one. The output of the PDF is HTML, which I can represent with a string in a variable, as in the example above:

$html = <<<EOD
<html>bar</html>
EOD;

The content I want is Wordpress post metadata which I call within the theme using the More Fields plugin like so:

<?php more_fields('foo','','',1); ?>

...which outputs some HTML which I've specified in the plugin settings. Unless I'm wrong, I can't make that call again directly from my PDF-generating script without authoring my own plugin. So how can I use JS to send the HTML to the script from a clickable "View PDF" link? Mind you, it's a full page of text, not just a few characters, if that matters.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦中楼上月下 2024-10-21 15:33:20

隐藏表格?

<form method="post" action="la.php"><input type="hidden" name="foo" value="<?php echo $value; ?>"></form>

Hidden Forms?

<form method="post" action="la.php"><input type="hidden" name="foo" value="<?php echo $value; ?>"></form>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文