作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 CKEDITOR5 和 React,并且我已经成功在我的项目中实现了 CKEDITOR,但是当我进入我的 View 时,我只能看到工具栏。
内容区域是不可见的,直到我点击它并出现蓝色边框。
如果我不再关注它,就不再有边界了。
这是我的代码
import React, { Component } from 'react'
import CKEditor from '@ckeditor/ckeditor5-react';
import DecoupledEditor from '@ckeditor/ckeditor5-build-decoupled-document';
export default class BlogNew extends Component {
render() {
return (
<div>
<CKEditor
editor={ DecoupledEditor }
onInit={ editor => {
editor.ui.getEditableElement().parentElement.insertBefore(
editor.ui.view.toolbar.element,
editor.ui.getEditableElement()
);
} }
onChange={(event, editor) => {
const data = editor.getData();
this.setState({ text: data })
}}
/>
</div>
)}
最佳答案
De CoupledEditor 专用于需要自定义 UI 的集成。确保将样式添加到您的组件中:
:root {
.ck.ck-editor__editable_inline {
border: 1px solid var(--ck-color-base-border);
}
}
参见@ckeditor5-ui
关于javascript - CKEDITOR 无法使用 De CoupledEditor 查看内容区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57406956/
我正在尝试使用 De CoupledEditor 替换我拥有的表单中的文本区域。 docs表明我可以只传递想要用编辑器替换的元素,然后将工具栏附加到 DOM。 问题是,当我传递一个 textarea
我正在使用 CKEDITOR5 和 React,并且我已经成功在我的项目中实现了 CKEDITOR,但是当我进入我的 View 时,我只能看到工具栏。 内容区域是不可见的,直到我点击它并出现蓝色边框。
我是一名优秀的程序员,十分优秀!