React JoditEditor插入图像不起作用

Posted

技术标签:

【中文标题】React JoditEditor插入图像不起作用【英文标题】:React JoditEditor insert image not working 【发布时间】:2021-10-22 11:17:29 【问题描述】:

我使用 JoditEditor 在我的代码中插入图像。但是当我尝试插入图像时,我无法将图像 URL 放入 URL 字段并且“插入”按钮不起作用。有人可以帮我吗?截图和我的代码如下:

const editor = useRef(null);
const config = 
readonly: false, // all options from https://xdsoft.net/jodit/doc/;

const [content, setContent] = useState("");
<JoditEditor
            ref=editor
            value=content
            config=config
            tabIndex=1
            onBlur=(newContent) => setContent(newContent)
            onChange=(newContent) => 
          />

Screenshot

【问题讨论】:

【参考方案1】:

我猜你正在使用模态。我遇到了同样的问题,这就是我通过添加 disableEnforceFocus 道具在 material-ui Modal 中修复它的方法。

  <Modal open=true disableEnforceFocus>
    <JoditEditor
        ref=editor
        value=content
        config=config
        tabIndex=1
        onBlur=(newContent) => setContent(newContent)
        onChange=(newContent) => 
      />
  </Modal>

【讨论】:

我尝试了您的建议,但没有奏效 - 是否有等效的引导模式?

以上是关于React JoditEditor插入图像不起作用的主要内容,如果未能解决你的问题,请参考以下文章

Srcset 在 React react-slick carousel 中不起作用

图像路径在 React 中不起作用,因为我尝试在对象内部使用图像路径,该对象也在数组内部

React Native onPress 在使用模态时不起作用

使用 jsPDF / HTML5 在 PDF 中插入图像不起作用

React.memo 不起作用 - 我错过了啥?

React Native - 为啥填充不起作用?