我的记录树枝文件中有以下代码:
<article class="indivisual-article-writeup">
<h1>{{ record.title }}</h1>
{# Output all fields, in the order as defined in the contenttype.
To change the generated html and configure the options, see:
https://docs.bolt.cm/templating/fields-tag #}
{{ fields() }}
{# Uncomment this if you wish to dump the entire record to the client, for debugging purposes.
{{ dump(record) }}
#}
</article>
现在{{ fields() }}
的一个元素是图像,所以我得到一个断开的链接。
,我在about us块中添加了一个图像,现在当我只想输出about-us记录的字段时,我添加了以下代码来测试它:
{% setcontent block = "block/about-us" %}
{{ fields(block) }}
现在即使在这里,图像字段显示为断开链接,但是当我将CMS上传到服务器时,一切似乎都正常。为什么会发生这种情况?
对此有何补救措施?