OctoberCMS 转发器不在静态页面中呈现数据
OctoberCMS repeater doesn't render data in static page
我几天前开始使用 OctoberCMS,我正在尝试使用转发器标签。下面的代码写在我的 layout.htm 文件(CMS TAB)中。[=11=]
<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 的静态页面 -> 页面 (PAGE TAB) -> 选择的页面:我可以在 'misc' 选项卡中看到这个转发器。
当我填写字段并保存时,我没有看到静态页面中呈现的内容。我所看到的只是一个空的 div 包裹在转发器标签周围。我究竟做错了什么?如何在我的静态页面中呈现此内容?我在静态 page.htm 文件的 viewbag 中看到添加的键和值。
感谢您的宝贵时间。
我相信这是一个已修复的错误。现在突然好用了……我什么都没改。
我几天前开始使用 OctoberCMS,我正在尝试使用转发器标签。下面的代码写在我的 layout.htm 文件(CMS TAB)中。[=11=]
<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 的静态页面 -> 页面 (PAGE TAB) -> 选择的页面:我可以在 'misc' 选项卡中看到这个转发器。
当我填写字段并保存时,我没有看到静态页面中呈现的内容。我所看到的只是一个空的 div 包裹在转发器标签周围。我究竟做错了什么?如何在我的静态页面中呈现此内容?我在静态 page.htm 文件的 viewbag 中看到添加的键和值。
感谢您的宝贵时间。
我相信这是一个已修复的错误。现在突然好用了……我什么都没改。