亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

vue-quill-editor如何處理富文本里面添加的圖片

vue-quill-editor如何處理富文本里面添加的圖片

千里① 2017-07-13 17:03:02
想要實現的效果是,當我在富文本框里面添加了有文字有圖片的內容時,我想在添加圖片的時候將圖片保存到自己的服務器上,并返回一個圖片的地址,然后用這個地址替換掉我添加的圖片的路徑(編輯器添加圖片后自動生成的base64路徑)
查看完整描述

2 回答

?
薄穆

TA貢獻1條經驗 獲得超2個贊

//重寫編輯器的圖片預覽方法
var?toolbar?=?quill.getModule('toolbar');
toolbar.addHandler('image',function(){
????var?fileInput?=?this.container.querySelector('input.ql-image[type=file]');
????if?(fileInput?==?null)?{
????????fileInput?=?document.createElement('input');
????????fileInput.setAttribute('type',?'file');
????????fileInput.setAttribute('accept',?'image/png,?image/gif,?image/jpeg,?image/bmp,?image/x-icon');
????????fileInput.classList.add('ql-image');
????????fileInput.addEventListener('change',?function?()?{
????????????if?(fileInput.files?!=?null?&&?fileInput.files[0]?!=?null)?{
????????????????var?formData?=?new?FormData();
????????????????formData.append('file',?fileInput.files[0]);
????????????????$.ajax({
????????????????????url:?'/upload',
????????????????????type:?'POST',
????????????????????cache:?false,
????????????????????data:?formData,
????????????????????processData:?false,
????????????????????contentType:?false
????????????????}).done(function(res)?{
???????????????????var?range=quill.getSelection(true);
???????????????????quill.insertEmbed(range.index,?'image',?"/public/upload/"+res.url);
???????????????????quill.setSelection(range.index+1);
????????????????}).fail(function(res)?{});
????????????}
????????});
????????this.container.appendChild(fileInput);
????}
????fileInput.click();

});


查看完整回答
2 反對 回復 2018-01-19
  • 2 回答
  • 1 關注
  • 15890 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號