我有一篇文章,其中有一个文件字段
module.exports = {
extend: 'apostrophe-pieces',
name: 'article',
label: 'Article',
pluralLabel: 'Articles',
orderings: true,
addFields: [
Other fields...
{
name: 'files',
label: 'Files',
type: 'singleton',
widgetType: 'apostrophe-files'
},
]
};
在html中,我使用了单引号文件小部件
{{ apos.singleton(data.piece, 'files', 'apostrophe-files') }}
当我在html中显示它们时,它工作正常,但是当我单击创建的链接以下载文件时,它在控制台中给了我错误。
模板警告:由于缺少附件URL,因此无法检索,已设置了默认图标。请尽快解决此问题!
我看不到我在做错什么。
答案 0 :(得分:0)
我现在不知道为什么,但是似乎不起作用,因为几天前我已经上传了文件,并且附件的URL由于某些原因而改变了。我把文件丢了,然后添加了新文件,效果很好。