您好,登錄后才能下訂單哦!
Summernote是一個(gè)基于jquery的bootstrap超級(jí)簡單WYSIWYG在線編輯器。Summernote非常的輕量級(jí),大小只有30KB,支持Safari,Chrome,Firefox、Opera、Internet Explorer 9 +(IE8支持即將到來)。
特點(diǎn):
世界上最好的WYSIWYG在線編輯器
極易安裝
開源
自定義初化選項(xiàng)
支持快捷鍵
適用于各種后端程序言語
Summernote官網(wǎng)地址 :https://summernote.org/
這是官網(wǎng)的一個(gè)例子:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Summernote</title> <link href="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css" rel="external nofollow" rel="stylesheet"> <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script> <script src="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.js"></script> <link rel="external nofollow" rel="stylesheet"> <script src="http://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.8/summernote.js"></script> </head> <body> <div id="summernote"><p>Hello Summernote</p></div> <script> $(document).ready(function() { $('#summernote').summernote(); }); </script> </body> </html>
效果圖:
最簡單的默認(rèn)初始化組件的方式:
在<body>添加一個(gè)容器<div>:
<div id="summernote">Hello Summernote</div>
再用Jquery初始化該組件:
$(document).ready(function() { $('#summernote').summernote(); });
我們也可以自定義組件,如自定義編輯框的高度:
$('#summernote').summernote({ height: 300, // 定義編輯框高度 minHeight: null, // 定義編輯框最低的高度 maxHeight: null, // 定義編輯框最高德高度 });
我們還可以自定義工具欄:
<!--工具欄--> toolbar: [ <!--字體工具--> ['fontname', ['fontname']], //字體系列 ['style', ['bold', 'italic', 'underline', 'clear']], // 字體粗體、字體斜體、字體下劃線、字體格式清除 ['font', ['strikethrough', 'superscript', 'subscript']], //字體劃線、字體上標(biāo)、字體下標(biāo) ['fontsize', ['fontsize']], //字體大小 ['color', ['color']], //字體顏色 <!--段落工具--> ['style', ['style']],//樣式 ['para', ['ul', 'ol', 'paragraph']], //無序列表、有序列表、段落對齊方式 ['height', ['height']], //行高 <!--插入工具--> ['table',['table']], //插入表格 ['hr',['hr']],//插入水平線 ['link',['link']], //插入鏈接 ['picture',['picture']], //插入圖片 ['video',['video']], //插入視頻 <!--其它--> ['fullscreen',['fullscreen']], //全屏 ['codeview',['codeview']], //查看html代碼 ['undo',['undo']], //撤銷 ['redo',['redo']], //取消撤銷 ['help',['help']], //幫助 ],
其它的一些初始化設(shè)置:
lang:'zh-CN', //設(shè)置中文,需引入中文插件summernote-zh-CN.js
placeholder: 'write here...', //占位符
dialogsInBody: true, //對話框放在編輯框還是Body
dialogsFade: true ,//對話框顯示效果
disableDragAndDrop: true ,//禁用拖放功能
shortcuts: false ,//禁用快捷鍵
還有回調(diào)函數(shù):
callbacks: { }
回調(diào)函數(shù)里面的事件有 oninit,onenter,onfocus,onblur,onkeyup,onkeydown,onpaste,onImageUpload 等等,
這里主要介紹上傳圖片觸發(fā)的事件 onImageUpload :
插入圖片的時(shí)候,Summernote組件默認(rèn)是將圖片以二進(jìn)制形式展示的,如果以此方式將文本框的內(nèi)容存儲(chǔ)到數(shù)據(jù)庫時(shí),會(huì)導(dǎo)致數(shù)據(jù)庫數(shù)據(jù)量很大
這是summernote默認(rèn)方式插入圖片時(shí)存儲(chǔ)到數(shù)據(jù)庫的字段:
所以這里采用另一個(gè)方法,就是將圖片上傳到服務(wù)器,上傳成功后回傳圖片的訪問地址到插入的圖片位置,展示圖片;
具體實(shí)現(xiàn)如下:
callbacks: { onImageUpload: function(file) { //圖片默認(rèn)以二進(jìn)制的形式存儲(chǔ)到數(shù)據(jù)庫,調(diào)用此方法將請求后臺(tái)將圖片存儲(chǔ)到服務(wù)器,返回圖片請求地址到前端 //將圖片放入Formdate對象中 var formData = new FormData(); //‘picture'為后臺(tái)獲取的文件名,file[0]是要上傳的文件 formData.append("picture", file[0]); $.ajax({ type:'post', url:'請求后臺(tái)地址', cache: false, data:formData, processData: false, contentType: false, dataType:'text', //請求成功后,后臺(tái)返回圖片訪問地址字符串,故此以text格式獲取,而不是json格式 success: function(picture) { $('#summernote').summernote('insertImage',picture); }, error:function(){ alert("上傳失敗"); } }); } }
后臺(tái)處理請求存儲(chǔ)圖片到服務(wù)器,成功則返回圖片訪問地址:
注意:我這里是將圖片上傳的真實(shí)地址和虛擬的圖片訪問地址在tomcat的server.xml中配置了映射關(guān)系,所以上傳成功后返回給前端的是虛擬的訪問地址;
@RequestMapping(value="contentFileUpload",method=RequestMethod.POST) @ResponseBody public String contentFileUpload(MultipartFile picture) { if (picture!=null && picture.getOriginalFilename()!=null && picture.getOriginalFilename().trim().length()>0) { /** * picture上傳路徑(+時(shí)間文件夾) */ //真實(shí)的上傳根路徑 String realUploadPath = 'D:/Program Files (x86)/apache-tomcat-8.5.16/webapps/file'; //虛擬的文件訪問根路徑 String fictitiousRoot = '/file' //建立以時(shí)間命名的文件夾 SimpleDateFormat sdf=new SimpleDateFormat("/yyyy/MM/dd/"); String datePath = sdf.format(new Date()); //最終真實(shí)路徑 String realuUploadBrandPath = realUploadPath+"/content"+datePath; //最終虛擬訪問路徑 String fictitiousUploadBrandPath =fictitiousRoot +"/content"+datePath; // 上傳文件原始名稱 String originFileName = picture.getOriginalFilename(); // 新的文件名稱 String newFileName = UUID.randomUUID()+originFileName.substring(originFileName.lastIndexOf(".")); //如果路徑文件夾不存在就創(chuàng)建 File dir=new File(realuUploadBrandPath); if(!dir.exists()){ dir.mkdirs(); } // 新文件 File newFile = new File(realuUploadBrandPath+File.separator+newFileName); // 將內(nèi)存中的文件寫入磁盤 try { picture.transferTo(newFile); } catch (IllegalStateException | IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } // 文件虛擬地址 String fictitiousFilePath = fictitiousUploadBrandPath+newFileName; return fictitiousFilePath; } return "false"; }
建議:真實(shí)的上傳根路徑應(yīng)寫在properties配置文件中,方便日后地址的修改,同時(shí)虛擬的訪問根路徑也不應(yīng)存儲(chǔ)到數(shù)據(jù)庫當(dāng)中,只需存儲(chǔ)相對位置就可以,將虛擬的訪問根路徑也寫在properties文件當(dāng)中。
通過上面的方法處理后,存儲(chǔ)到數(shù)據(jù)庫的字段:
獲取編輯框內(nèi)容的方法:
var markupStr = $('#summernote').summernote('code');
總結(jié)
以上所述是小編給大家介紹的基于BootStrap的文本編輯器組件Summernote,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。