-1

我遵循To Integrating IvoryCKEditorBundle in EasyAdminBundle的指南,我使用的是 Symfony 3.1.10 版本和 EasyAdminBundle 1.17.12 我放在 AppKernel

new Ivory\CKEditorBundle\IvoryCKEditorBundle(), //CK Editor

就像在文档中说的那样

easy_admin:        
entities:         

    Genus:
        class: AppBundle\Entity\Genus
        label: Genuses
        help: Genuses are not covered under warranty!            
        form:
            fields:
                -
                    property: id
                    type_options: {disabled: true}
                - name
                - speciesCount
                - { property: funFact ,  type: ckeditor  }
                - isPublished
                - { property: 'firstDiscoveredAt', type_options: { widget: 'single_text' }}
                - { property: 'subFamily', type: 'easyadmin_autocomplete' }
                -                   
                    property: genusScientists
                    type: 'collection'
                    type_options:
                        entry_type: AppBundle\Form\GenusScientistEmbeddedForm
                        allow_delete: true
                        allow_add: true
                        by_reference: false 
                - { property: 'funFact', type: 'textarea' }

我将属性 funFact 配置为使用 ckeditor,但在没有 ckeditor 的情况下使用 funFact 无法使用 表单的图像

在 easyAdminBundle 的网络配置文件中,此参数被放置为 texarea 并且没有出现任何关于 ckeditor网络配置文件的信息 希望你能帮助我,谢谢。

4

1 回答 1

0

我的错误我没有看到我再次放在最后

- { property: 'funFact', type: 'textarea' }

并替换属性呵呵

于 2018-04-17T17:18:18.247 回答