我应该如何制作带有可下载文件字段的 Plone 内容类型?
我正在尝试使用 Archetypes 创建一个 Plone 内容类型,它恰好包含两个可下载文件,如 plone.app.blob.FileField
。我该如何实现这些字段可以被遍历然后下载?
I am trying to make a Plone content type with Archetypes that holds exactly two downloadable files as plone.app.blob.FileField
. How do I make it so those fields can be traversed to and then downloaded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下载 URL 的拼写为
content-item/at_download/field-name
。内容类型无需执行任何特殊操作即可支持可下载的Blob
字段。The spelling for the download URL is just
content-item/at_download/field-name
. The content type doesn't have to do anything special to support downloadableBlob
fields.