為什么選這個編輯器,因為顏值苔悦!
官網(wǎng) https://ckeditor.com/ckeditor-5/
1介时、安裝
官網(wǎng)已經(jīng)四種版本,也給出了下載安裝的方法蒜埋,參考官網(wǎng)安裝
https://ckeditor.com/ckeditor-5/download/
2真慢、引用
在組件中引用
import CKEditor from '@ckeditor/ckeditor5-build-classic'
import '@ckeditor/ckeditor5-build-classic/build/translations/zh-cn' //中文包
3、html
<div class="goods-editor">
<!-- 工具欄容器 -->
<div id="toolbar-container"></div>
<!-- 編輯器容器 -->
<div id="editor">
<!-- <p>This is the initial editor content.</p> -->
</div>
</div>
4理茎、方法
因為圖片要上傳到我們的服務器黑界,要重置一下上傳路徑,方法如下
export default {
data() {
return {
editor: null, // 編輯器實例
}
},
mounted() {
this.initCKEditor()
},
methods: {
initCKEditor() {
class UploadAdapter {
constructor(loader) {
this.loader = loader
}
upload() { //重置上傳路徑
return new Promise((resolve, reject) => {
var fileName = 'goods' + this.loader.file.lastModified
client().put(fileName, this.loader.file).then(result => {
resolve({
default: result.url
})
}).catch(err => {
console.log(err)
})
})
}
abort() {
}
}
//初始化編輯器
CKEditor.create(document.querySelector('#editor'), {
removePlugins: ['MediaEmbed'], //除去視頻按鈕
language: 'zh-cn', // 中文
ckfinder: {
'uploaded': 1, 'url': '/'
// 后端處理上傳邏輯返回json數(shù)據(jù),包括uploaded(選項true/false)和url兩個字段
}
}).then(editor => {
const toolbarContainer = document.querySelector('#toolbar-container')
toolbarContainer.appendChild(editor.ui.view.toolbar.element)
// 加載了適配器
editor.plugins.get('FileRepository').createUploadAdapter = (loader) => {
return new UploadAdapter(loader)
}
this.editor = editor // 將編輯器保存起來皂林,用來隨時獲取編輯器中的內容等朗鸠,執(zhí)行一些操作
}).catch(error => {
console.error(error)
})
},
}
4、獲得編輯器中的數(shù)據(jù)
this.editor.getData()
5础倍、初始化編輯器中的數(shù)據(jù)
this.editor.setData(contentVal)
6烛占、編輯器只讀
this.editor.isReadOnly = true; //將編輯器設為只讀
網(wǎng)友補充,如果在上傳之前需要做限制,參考如下:(感謝網(wǎng)友的分享)
class MyUploadAdapter {
constructor(loader) {
self.loader = loader;
self.oldValue = self.editor.getData();//保存原來的內容
}
upload() {
return new Promise((resolve, reject) => {
let size = self.loader.file.size;
if (size / 1024 > 2048) {
self.$message({
message: '圖片不能大于2M'
});
self.editor.setData(self.oldValue);
return false;
}
const data = new FormData();
data.append('imageFile', self.loader.file);
self.fullscreenLoading = true;
self.$http.post('/editor/uploadImg', data).then(res => {
self.fullscreenLoading = false;
if (res) {
if (res.data.code == 200) {
resolve({
default: res.data.data
});
} else {
self.$message({
message: res.data.msg
});
self.editor.setData(self.oldValue);
}
} else {
self.$message({
message: 'can not upload file: ' + self.loader.file.name
});
self.editor.setData(self.oldValue);
}
})
}).catch(error => {
console.log(error);
});
}
abort() {
}
}