django 富文字編輯器

2022-07-28 08:51:11 字數 903 閱讀 6072

1.安裝

pip install django-tinymce

安裝完成後可以使用在admin管理中,也可以自定義表中

2.配置

......  '

tinymce',

)並在setting.py中新增編輯器配置

tinymce_default_config =

在專案中urls.py中配置編輯器url

urlpatterns =[

...url(r

'^tinymce/

', include('

tinymce.urls

')),

]

3.使用

3.1在admin中的使用

在應用中models.py中,定義模型的屬性為htmlfield()型別

from django.db import

models

from tinymce.models import

htmlfield

class

goodsinfo(models.model):

gcontent=htmlfield()

生成遷移

python manage.py makemigrations

遷移

python manage.py migrate

注意若沒有發現表goodinfo,解決辦法是刪除遷移表中關於該應用的資料

delete

'booktest

';

再次遷移

富文字編輯器

關於使用富文字編輯器的一些小坑 官網 1.專案 片 editor fail function xhr,editor,result custominsert function insertimg,result,editor this.editor.create this.editor.txt.html...

富文字編輯器

富文字編輯器,rich text editor,簡稱 rte,它提供類似於 microsoft word 的編輯功能。常用的富文字編輯器 kindeditor ueditor ckeditor 在頁面中新增js 用於初始化kindeditorallowfilemanager 是否允許瀏覽伺服器已上傳...

富文字編輯器

富文字編輯器,rich text editor,簡稱 rte,它提供類似於 microsoft word 的編輯功能。常用的富文字編輯器 kindeditor ueditor ckeditor 在頁面中新增js 用於初始化kindeditor allowfilemanager 是否允許瀏覽伺服器已上...