刘磊
2025-04-19 2f18780a16a68f7fc67dd3bca61b8d0aed7c8e1a
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<template>
  <div class="hello" ref="volWangEditor"></div>
</template>
 
<script>
import E from "wangeditor";
let OSS = {}// require('ali-oss');
export default {
  props: {
    url: {
      //上传图片的url
      type: String,
      default: "",
    },
    upload: {
      //上传方法
      type: Function,
      // (file, insertImgFn) => {}
      default: null,
    },
    uploadCount: {
      //最多可以上传(图片)的数量
      type: Number,
      default: 3,
    },
    modelValue: "",
    width: {
      type: String,
      default: "100%",
    },
    height: {
      type: Number,
      default: 250,
    },
    minWidth: {
      type: Number,
      default: 650,
    },
    minHeight: {
      type: Number,
      default: 100,
    },
  },
  name: "wang-editor",
  data() {
    return {
      lastHtml: "",
      change: false,
      editor: null,
      init: false,
    };
  },
  watch: {
    modelValue(newVal, val) {
      if (
        (newVal !== val &&
          this.lastHtml !== "" &&
          val === this.lastHtml &&
          this.editor.txt.html() === this.lastHtml) ||
        this.editor.txt.html() === ""
      ) {
        this.editor.txt.html(newVal);
      }
      this.lastHtml = newVal;
    },
  },
  destroyed() {
    this.editor = null;
  },
  mounted() {
    this.editor = null;
    let editor = new E(this.$refs.volWangEditor);
    this.editor = editor;
    editor.config.zIndex = 500;
    editor.config.height = this.height;
    editor.config.onchange = (html) => {
      if (!this.init && this.lastHtml === "") {
        this.lastHtml = html;
        this.init = true;
      }
      this.$emit("update:modelValue", html);
    };
    // editor.config.uploadFileName = "fileInput";
    // //设置header
    // editor.config.uploadImgHeaders = {
    //   Accept: "application/json",
    //   Authorization: this.$store.getters.getToken(),
    // };
    //上传地址
    editor.config.uploadImgServer = this.http.ipAddress + this.url;
    // console.log(editor.config.uploadImgServer);
    editor.config.customUploadImg = async (resultFiles, insertImgFn) => {
      // 自定义上传
      if (this.upload) {
        console.log("调用自定义的上传方法");
        console.log(resultFiles);
        // resultFiles 是 input 中选中的文件列表
        // insertImgFn 是获取图片 url 后,插入到编辑器的方法
        //有可能会上传多张图片,上传多张图片就需要进行遍历
        resultFiles.map((item) => {
          // _this.getUploadImg(item, insertImgFn);
          this.upload(item, insertImgFn);
        });
      } else {
        if (window.oss && window.oss.ali.use) {
          await this.uploadOSS(resultFiles, insertImgFn);
          this.$message.success('上传成功');
          return;
        } else {
 
          if (!this.url) {
            this.$message.error("未配置url");
            return;
          }
          const resultArr = await this.uploadFile(resultFiles);
          resultArr.forEach(url => {
            insertImgFn(url);
          })
          // this.http.post(this.url, formData, true).then((x) => {
          //   if (!x.status) {
          //     return this.$message.error(x.message);
          //   }
          //   nameArr.forEach(m => {
          //     insertImgFn(this.http.ipAddress + x.data + m);
          //   })
          // });
        }
      }
    };
    //Written by DavidZhang
    //editor.config.uploadVideoServer = '/api/upload-video'; 
    //editor.config.uploadVideoServer = this.http.ipAddress + this.url; 
    editor.config.uploadVideoServer = this.http.ipAddress + 'api/CZ_CategoryInformation/upload';
    editor.config.customUploadVideo = async (resultFiles, insertVideoFn) => {
      // resultFiles 是 input 中选中的文件列表
      // insertVideoFn 是获取视频 url 后,插入到编辑器的方法
 
      // 上传视频,返回结果,将视频地址插入到编辑器中
 
      const resultArr = await this.uploadFile(resultFiles);
      resultArr.forEach(url => {
        //  insertImgFn(url);
        insertVideoFn(url)
      })
 
    }
    editor.create();
    editor.txt.html(this.modelValue);
  },
  methods: {
    async uploadFile(resultFiles) {
      let formData = new FormData();
      let nameArr = [];
      resultFiles.forEach(function (file) {
        formData.append("fileInput", file, file.name);
        nameArr.push(file.name);
      });
      let resultArr = []
      await this.http.post(this.url, formData, true,{headers:{ 'Content-Type': 'multipart/form-data' }}).then((x) => {
        if (!x.status) {
          return this.$message.error(x.message);
        }
        resultArr = nameArr.map(m => {
          return this.http.ipAddress + x.data + m;
        })
        // nameArr.forEach(m => {
        //   insertImgFn(this.http.ipAddress + x.data + m);
        // })
      });
      return resultArr;
    },
    async uploadOSS(resultFiles, insertImgFn) {
      await this.http.get('api/alioss/getAccessToken', {}, false).then(async (x) => {
        if (!x.status) return this.$Message.error(x.message);
        let client = new OSS({
          // yourRegion填写Bucket所在地域。以华东1(杭州)为例,Region填写为oss-cn-hangzhou。
          region: x.data.region,
          // 从STS服务获取的临时访问密钥(AccessKey ID和AccessKey Secret)。
          accessKeyId: x.data.accessKeyId,
          accessKeySecret: x.data.accessKeySecret,
          // 从STS服务获取的安全令牌(SecurityToken)。
          stsToken: x.data.securityToken,
          // 填写Bucket名称。
          bucket: x.data.bucket
        });
        debugger;
        console.log(resultFiles);
        for (let index = 0; index < resultFiles.length; index++) {
          const file = resultFiles[index];
          let result = await client.put(
            x.data.bucketFolder + '/' + x.data.unique + file.name,
            file
          );
          // 如果有配置cdn,返回的url需要拼接cdn
          if (window.oss.ali.cdn) {
            result.url = new URL(x.data.bucketFolder + '/' + x.data.unique + file.name, window.oss.ali.cdn).toString();
          }
          console.log(result);
          file.path = result.url;
          file.newName = x.data.unique + file.name;
          insertImgFn(file.path);
 
        }
      });
      return;
    },
  }
};
</script>
 
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1,
h2 {
  font-weight: normal;
}
 
ul {
  list-style-type: none;
  padding: 0;
}
 
li {
  display: inline-block;
  margin: 0 10px;
}
 
a {
  color: #42b983;
}
</style>