Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 pdf 嵌入到页面中,并且我正在使用 contenttypes.yml 中的“文件”字段
file: type: file extensions: [ pdf, doc, docx, ppt, pptx ]
该字段出现在内容编辑器中,它甚至可以在页面中插入一些代码。然而结果令人失望,导航器只输出这样的一行:
file:2014/12/doc.pdf
有人能告诉我我做错了什么吗?
您应该在文件字段周围添加自己的 HTML,以允许用户下载它。像这样的东西:
{% if record.file is not empty %} Click to download: <a href="{{ paths.files }}{{ record.file }}">{{record.file}}<a> {% endif %}
此外,如果您想将 PDF 嵌入到页面中,则需要使用第三方插件,因为它们本身不受支持。
谷歌文档提供了一个,你可以在这里获取嵌入代码:
https://docs.google.com/viewer