使用Vue封装wangEditor组件

具体步骤如下

1. Install wang-editor (安装)

1
npm install wangeditor

(注意 wangeditor 全部是小写字母

2. 封装成Vue组件

  • 子组件代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<template>
<div class="editor-wrapper">
<div class="editor-container" ref="editorEle"></div>
</div>
</template>

<script>
import E from 'wangeditor'
export default {
name: 'Editor',
data () {
return {
editor: null
}
},
props: {
value: {
type: String,
default: ''
},
placeholder: {
type: String,
default: ''
}
},
watch: {
value (val) {
this.editor.txt.html(val)
}
},
mounted () {
this.editor = new E(this.$refs.editorEle)
this.editor.customConfig.onchange = (html) => {
this.$emit('input', html)
}
// 创建富文本实例
this.editor.create()
this.editor.txt.html(this.placeholder)
},
beforeDestroy () {
this.editor.destroy()
}
}
</script>
  • 父组件代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
<div class="rich-text-editor">
<Editor v-model="content" :placeholder="placeholder"/>
</div>
</template>

<script>
import Editor from '../../components/Editor'
export default {
name: 'RichTextEditor',
data () {
return {
content: '',
placeholder: '<b style="font-size: 16px">请输入内容...</b>'
}
},
components: { Editor }
}
</script>

3. 图片上传

配置代码入下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<script>
export default {
mounted () {
this.editor.customConfig.uploadImgServer = '你的上传图片的接口'
this.editor.customConfig.uploadFileName = '你自定义的文件名'
// 下面是最重要的的方法
this.editor.customConfig.uploadImgHooks = {
before: function (xhr, editor, files) {
// 图片上传之前触发
// xhr 是 XMLHttpRequst 对象,editor 是编辑器对象,files 是选择的图片文件

// 如果返回的结果是 {prevent: true, msg: 'xxxx'} 则表示用户放弃上传
// return {
// prevent: true,
// msg: '放弃上传'
// }
},
success: function (xhr, editor, result) {
// 图片上传并返回结果,图片插入成功之后触发
// xhr 是 XMLHttpRequst 对象,editor 是编辑器对象,result 是服务器端返回的结果
},
fail: function (xhr, editor, result) {
// 图片上传并返回结果,但图片插入错误时触发
// xhr 是 XMLHttpRequst 对象,editor 是编辑器对象,result 是服务器端返回的结果
},
error: function (xhr, editor) {
// 图片上传出错时触发
// xhr 是 XMLHttpRequst 对象,editor 是编辑器对象
},
timeout: function (xhr, editor) {
// 图片上传超时时触发
// xhr 是 XMLHttpRequst 对象,editor 是编辑器对象
},

// 如果服务器端返回的不是 {errno:0, data: [...]} 这种格式,可使用该配置
// (但是,服务器端返回的必须是一个 JSON 格式字符串!!!否则会报错)
customInsert: function (insertImg, result, editor) {
// 图片上传并返回结果,自定义插入图片的事件(而不是编辑器自动插入图片!!!)
// insertImg 是插入图片的函数,editor 是编辑器对象,result 是服务器端返回的结果

// 举例:假如上传图片成功后,服务器端返回的是 {url:'....'} 这种格式,即可这样插入图片:
// result.data就是服务器返回的图片名字和链接
let url = Object.values(result.data)
// 在这里转成JSON格式
JSON.stringify(url)
insertImg(url)
// result 必须是一个 JSON 格式字符串!!!否则报错
}
}
}
}
</script>

````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````

参考内容:wangEditor3使用手册-上传图片到服务器

-------------本文结束感谢您的阅读-------------