OctoberCMS转发器不会在静态页面中呈现数据

时间:2018-07-31 09:28:27

标签: repeater octobercms octobercms-backend

几天前,我开始使用OctoberCMS,并且尝试使用中继器标签。下面的代码写在我的layout.htm文件(CMS TAB)中。

<body>
<!-- HEADER PARTIAL -->

<!-- generate the content -->
{% page %}
<div>
{repeater name="item" prompt="Add item"}
    <div class="article-container">
        <div class="carousel-container">
            <img />
            <img /> <!-- add X-amount of Images to the carousel -->
            <img />
            <button class="btn-small">prev</button>
            <button class="btn-small">next</button>
        </div>

        <article>
            <header>{text name="title" label="Title"}Title{/text}</header>
            <p>{textarea name="description" label="Description"}Description{/textarea}</p>
            <button class="btn-gradient">{text name="buttonText" label="ButtonText"}ButtonText{/text}</button>
        </article>
    </div>
{/repeater}
</div>
<!-- content generated -->

<!-- FOOTER PARTIAL -->
<!-- SCRIPTS -->
</body>

在Rainlab的“静态页面”->“页面(页面选项卡)”->“选定的页面”中:我可以在“其他”标签中看到此转发器。

当我填写字段并保存时,看不到“静态页面”中呈现的内容。我所看到的只是一个空的div,它环绕在Repeater标签周围。我究竟做错了什么?如何在静态页面中呈现此内容?我在静态page.htm文件的视图包中看到了添加的键和值。

谢谢您的时间。

1 个答案:

答案 0 :(得分:0)

我相信这是已修复的错误。现在突然起作用了……我什么都没改变。