CKEditor中没有从计算机上传图像的选项

No option for Image upload from the computer in CKEditor

本文关键字:图像 选项 计算机 CKEditor      更新时间:2023-09-26

我已经从CKEditor网站下载了CK Editor。他们的网站上有很多功能,当我集成到我的网站时,这些功能可以正常工作。

但是,

没有可用于从本地计算机上传图像的功能。

有什么最简单的方法来集成它吗。下面是我实现代码的方式。

<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>

<CKEditor:CKEditorControl ID="txtPagedesc" BasePath="/ckeditor/" runat="server">
                                            </CKEditor:CKEditorControl>

请帮助

这些文档可能会对您有所帮助。

http://docs.ckeditor.com/#/指南/dev_file_browse_uploadhttp://docs.ckeditor.com/#/guide/dev_howtos_file_pload

是。CKEditor并没有直接从本地计算机上传图像的功能。但我认为这应该对你有所帮助:

https://github.com/hendcorp/ckeditor-img-upload

它使用Bootstrap、jQuery和PHP创建简单的弹出窗口(modals),直接从本地计算机上传图像,我们只需要点击上传的图像就可以插入CKEditor。我希望它能有所帮助。