将图像插入CKEditor

将图像插入CKEditor

本文介绍了将图像插入CKEditor的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在我的电子应用程序中使用CKEditor5和CKEditor-react。
而且我想在编辑器中粘贴图像,但是我遇到错误

I trying to use CKEditor5 and CKEditor-react in my electron app.And i want to paste image in editor, but i have an error

文档说我使用云进行管理。但是我的应用程序必须在本地运行并且没有互联网
有人可以帮助我吗?

Docs says that I mast using cloud. But my app must working locally and without internetCan someone help me?

推荐答案

说,在简短地说,这是

The docs say, in short, this:


  • 使用内置的适配器(云服务)

  • 使用内置的适配器(如果需要,可以在本地使用),

  • 编写自己的适配器(在这种情况下,请参考文档)。

  • use the built-in Easy Image adapter (cloud service),
  • use the built-in CKFinder adapter (can work locally if you want),
  • write your own adapter (in which case, please refer to the UploadAdapter interface documentation).

最后一个选项为您提供了完全自由的方式和方式您要将文件发送到的位置。

The last option gives you a complete freedom on how and where you want to send those files.

PS。您可以在此问题中找到更多详细信息:

PS. You can find a bit more details in this question: How to enable image upload support in CKEditor 5?

这篇关于将图像插入CKEditor的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 05:58