1. 程式人生 > >django通過富文本編輯器發帖

django通過富文本編輯器發帖

文檔 row 文本編輯器 介紹 html 比較 -1 mage 編輯器

在發帖的頁面經常會編輯一些圖片、字體、多媒體等,手動編輯這麽內容比較麻煩,這樣就會用到html在線編輯器

這裏介紹下CKEditor和UEditor

CKEditor

首先下載CKEditor的full版本

技術分享

通過CKEditor的在線幫助文檔來使用CKEditor

  http://docs.ckeditor.com/#!/guide/dev_installation

技術分享

將ckeditor_4.7.1_full.zip解壓縮好後放到django中的靜態目錄中,然後在發帖的頁面中導入上圖中的js和添加<textarea name=‘editor1‘ id=‘editor1‘ rows= ‘10‘ cols=‘80‘></textarea>

這樣在發帖的頁面顯示如下:

技術分享

django通過富文本編輯器發帖