vue引入wangeditor打包报错?

在vuecli中用的npm安装的wangeditor,组件引入和显示都没问题,但是服务器打包时显示没有wangeditor,我在本地打包可以,但是我把git代码clone下来安装依赖后在打包也会报错,我在packjson里面发现也没有他。
图片描述

<template>
  <div id="wangeditor">
    <div
      ref="editorElem"
      style="text-align:left"
    ></div>
  </div>
</template>

<script>
import E from 'wangeditor'
export default {
  name: 'editorElem',
  data() {
    return {
      editorContent: '',
      uploading:
        process.env.baseUrl + '/anonVerify/account/file/wangEditorUpload',
      editor: null
    }
  },
  props: ['catchData', 'content'], //接收父组件的方法
  created() {
    this.editorContent = this.content
    console.log(this.content)
  },
  watch: {
    content() {
      this.editor.txt.html(this.content)
    }
  },
  mounted() {
    this.editor = new E(this.$refs.editorElem) //创建富文本实例

    this.editor.customConfig.onchange = html => {
      this.editorContent = html
      this.catchData(html) //把这个html通过catchData的方法传入父组件
    }
    this.editor.customConfig.uploadImgServer = this.uploading
    this.editor.customConfig.uploadFileName = 'file'
    // editor.customConfig.uploadImgHeaders = {
    //   Accept: '*/*',
    //   Authorization: 'Bearer ' + token //头部token
    // }
    this.editor.customConfig.menus = [
      //菜单配置
      'head',
      'list', // 列表
      'justify', // 对齐方式
      'bold',
      'fontSize', // 字号
      'italic',
      'underline',
      'image', // 插入图片
      'foreColor', // 文字颜色
      'undo', // 撤销
      'redo' // 重复
    ]

    this.editor.create()
    console.log(this.content)

    this.editor.txt.html(this.content)
    //下面是最重要的的方法
    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 是服务器端返回的结果
        this.imgUrl = Object.values(result.data).toString()
      },
      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:'....'} 这种格式,即可这样插入图片:
        let url = Object.values(result.data) //result.data就是服务器返回的图片名字和链接
        JSON.stringify(url) //在这里转成JSON格式
        insertImg(url)
        // result 必须是一个 JSON 格式字符串!!!否则报错
      }
    }
  }
}
</script>
阅读 4.7k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题