gpt4 book ai didi

python - 将 CKEditor 添加到 Django 项目

转载 作者:太空宇宙 更新时间:2023-11-04 10:28:51 24 4
gpt4 key购买 nike

有人可以指导我在我的 Django 项目中安装 CKEditor 的正确方向吗?我对此很陌生,所以解释得越透彻,对我的帮助就越大。

我找到了这个链接,但它对我来说效果不是很好:http://docs.ckeditor.com/#!/guide/dev_installation .

非常感谢!

最佳答案

还有另一种将 CKeditor 集成到 Django 的方法,即使用 CKeditor 的 Javascript 版本。

http://ckeditor.com/download 下载 ckeditor并解压 zip 文件,将解压后的文件夹放在静态根目录下。将 ckeditor 静态文件添加到您的模板中,例如:

<script src="{{STATIC_URL}}ckeditor/ckeditor.js"></script>

在您的表单中,像这样添加 html 类:

class SomeForm(forms.Form):

text = forms.CharField(widget = forms.Textarea(attr={'class':'richtexteditor'})

要使这个富文本编辑器可见,请将以下行添加到您的模板中:

<script>
CKEDITOR.replace( '.richtexteditor' );
</script>

关于python - 将 CKEditor 添加到 Django 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28122166/

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