如何从动态生成的页面将数据发送到 PHP 脚本?
我正在尝试在文档中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
隐藏表格?
Hidden Forms?