gpt4 book ai didi

javascript - 如何将插件安装到 CkEditor,Django

转载 作者:行者123 更新时间:2023-11-28 20:41:03 27 4
gpt4 key购买 nike

我正在使用 django-ckeditor .现在我需要添加一个新插件。 This我已经读过,我应该下载并将其解压缩到“插件”文件夹中:

Extract the contents of the file into the "plugins" folder of CKEditor.

但我的项目中没有任何“插件”文件夹。有一个,但它位于 Lib\site-packages\ckeditor\static\ckeditor\ckeditor\plugin 中。

因此,如果我将它添加到那里 - 当我将它部署到生产环境或另一台计算机上时它将不可用......

我该怎么办?

最佳答案

感谢您的提问。我只是将 html5audio 插件添加到 djnago-ckeditor 中。完整路径是:

  1. official repo 下载插件.
  2. 解压html5audio目录到/path/to/your/project/static/ckeditor/ckeditor/plugins//python/libs/ckeditor/static/ckeditor/ckeditor/plugins/ 及其所有内容。
  3. html5audio 插件添加到您的 settings.py 中,靠近其他 CKEDITOR 变量:
CKEDITOR_CONFIGS = {
'default': {
'toolbar': 'full',
'extraPlugins': ','.join(
[
'html5audio',
]
),
},
}

4.使用 ckeditor 小部件重新加载页面 :).

关于javascript - 如何将插件安装到 CkEditor,Django,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34541431/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com