Bolt\Controller\Backend\Records::edit BOLT CMS 中仍然禁用反 CSRF 令牌功能

Anti CSRF token functionality still disabled in Bolt\Controller\Backend\Records::edit BOLT CMS

我在使用 Bolt CMS 时遇到问题。当我添加一条新记录并保存它时,我收到该消息:

"Anti CSRF token functionality still disabled in Bolt\Controller\Backend\Records::edit"

所以我添加的内容没有显示在我的视图中。

这是我的内容类型和我的观点,以证明我的代码是正确的(我认为):

pictures:
    name: Pictures
    singular_name: picture
    fields:
        title:
            type: text
            class: large
            group: content
        slug:
            type: slug
            uses: title
        image:
            type: image
        text:
            type: html
            height: 300px
    recordsperpage: 100
    default_status: publish
    sort: -datepublish

{% include '_header.twig' %}

<body class="home__bg">
    <div class="container">
        <section>
            <div class="row">
                <div class="col-md-10 col-md-offset-1 page__window">
                    <div class="col-md-12 page__window__in">

                        <h2>News</h2>
                        <div class="page__body">
                            {% setcontent adverts = 'pictures/latest/100' %}
                                {% for picture in pictures %}
                                    {{ picture.image }}
                                {% endfor %}    
                            
                        </div><!-- /.marketing__pics -->

                    </div><!-- /.page__window__in -->
                </div><!-- /.page__window -->
            </div><!-- /.row -->
        </section>
    </div><!-- /.container -->



{% include '_footer.twig' %}

谢谢你的帮助。

是的,它目前在主(开发)分支中被禁用,因为我们正在进行重构。那里的警告提醒我们它是 "not done yet"

当它作为稳定版本发布时,它将被重新启用,所以请立即使用稳定版本进行任何生产工作。