本文主要是介绍django利用ckeditor富文本编辑器实现修改文章,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
之前用django-ckeditor作富文本编辑器,想实现文章修改,不知道怎么网富文本编辑器中填充原有的文章。
然后用原生的ckeditor实现了。
1、下载ckeditor4到django静态文件夹
2、在更新文章的模板中或者base.html中引入ckeditor.js文件
<script src="{% static 'ckeditor4/ckeditor.js' %}"></script>
3、再次修改更新文章的模板文件,
<textarea type="text" class="form-control" id="body" name="body" rows="12">{{ article.body | safe }}</textarea>
<script>// Replace the <textarea id="editor1"> with a CKEditor// instance, using default configuration.CKEDITOR.replace( 'body' );
</script>
官方文档参考:
https://ckeditor.com/docs/ckeditor4/latest/guide/dev_installation.html#adding-ckeditor-to-your-page
这篇关于django利用ckeditor富文本编辑器实现修改文章的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!