vue 引入tinymce编辑器

作者: zz77zz | 来源:发表于2019-06-03 18:48 被阅读3次

    新来一需求 说要在后台管理里添加富文本 之前用了百度富文本 打包失败boss这么跟我说的 开始pingvue 富文本 这里需要提到的是 富文本会将上传的图片转成base64 保存时数据库压力太大 所以建议写成我这样 先上传到服务器然后生成个标签写进去 这样最好

    tinymce 有vue组件 果断用起来
    github - vue-tinymce

    基本步骤

    建议一步一步来 别直接粘贴代

    1. 安装 一下两个包
        "@tinymce/tinymce-vue": "^2.0.0"
        "tinymce": "^5.0.6"
    

    npm install tinymce -S npm --save @tinymce/tinymce-vue

    1. 下载中文包

    语言设置链接

    1. 将node_moudles里面tinymce里的skins文件复制

      皮肤引入
    2. 将上述上个操作文件 放入一个目录下 我这里是public根据你的项目文件结构来定

    我的中文包是在tinymce里跟skins一个层级

    请注意上下层结构

    组件内容

    设置内容基本都在备注里

    <template>
      <div class="tinymce-editor">
        <editor v-model="myValue"
                :init="init"
                :disabled="disabled"
                @onClick="onClick">
        </editor>
      </div>
    </template>
    <script>
      import tinymce from 'tinymce/tinymce'
      import Editor from '@tinymce/tinymce-vue'
      import 'tinymce/themes/silver'
      // 编辑器插件plugins
      // 更多插件参考:https://www.tiny.cloud/docs/plugins/
      import 'tinymce/plugins/image'// 插入上传图片插件
      import 'tinymce/plugins/media'// 插入视频插件
      import 'tinymce/plugins/table'// 插入表格插件
      import 'tinymce/plugins/lists'// 列表插件
      import 'tinymce/plugins/wordcount'// 字数统计插件
      export default {
        components: {
          Editor
        },
        props: {
          value: {
            type: String,
            default: ''
          },
          disabled: {
            type: Boolean,
            default: false
          },
          plugins: {
            type: [String, Array],
            default: 'lists image media table wordcount'
          },
          toolbar: {
            type: [String, Array],
            default: 'undo redo |  formatselect | bold italic forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | lists image media table | removeformat'
          }
        },
        data () {
          return {
            init: {
              language_url: '/tinymce/zh_CN.js',  //public目录下
              language: 'zh_CN',
              skin_url: '/tinymce/skins/ui/oxide', //public目录下
              height: 300,
              plugins: this.plugins,  // 父组件传入 或者 填写个默认的插件 要选用什么插件都可以 去官网可以查到
              toolbar: this.toolbar,  // 工具栏 我用到的也就是lists image media table wordcount 这些 根据需求而定
              images_upload_url: '', //上传路径
              // 此处为图片上传处理函数,这个直接用了base64的图片形式上传图片,
              // 如需ajax上传可参考https://www.tiny.cloud/docs/configure/file-image-upload/#images_upload_handler
    
             // 官网抄的图片上传 项目如果用了vue-resource可以用$http 因为比较懒就没改
              images_upload_handler: (blobInfo, success, failure) => {
    
                var xhr, formData;
                xhr = new XMLHttpRequest();
                xhr.withCredentials = false;
                xhr.open('POST', `${config.webPath}` + "basic/upload/");
    
                xhr.onload = function() {
                  var json;
                  if (xhr.status != 200) {
                    failure('HTTP Error: ' + xhr.status);
                    return;
                  }
                  json = JSON.parse(xhr.responseText);
    
                  // if (!json || typeof json.img_url != 'string') {
                  //   failure('Invalid JSON: ' + xhr.responseText);
                  //   return;
                  // }
                  console.log(json)
                  success(json.img_url);
                };
    
                formData = new FormData();
                formData.append('file', blobInfo.blob(), blobInfo.filename());
                console.log('formData', formData)
    
                xhr.send(formData);
              }
            },
            myValue: this.value
          }
        },
        mounted () {
          tinymce.init({})
        },
        methods: {
          onClick (e) {
            this.$emit('onClick', e, tinymce)
          }
        },
        watch: {
          value (newValue) {
            this.myValue = newValue
          },
          myValue (newValue) {
            this.$emit('input', newValue)
          }
        }
      }
    
    </script>
    
    
    1. 引入
    import TinymceEditor from '@/components/tiny-editor'
    
    1. 使用
    <tinymce-editor ref="editor"
                                  v-model="newFrom.contents" // 富文本内容
                                  @onClick="onClick"> //事件
    </tinymce-editor>
    

    最终界面

    界面 - 工具栏可以自己引入插件
    • 与这篇无关 如果有同学跟我一样是新手 在组件引入的时候因为相对绝对路径想死的 请看这个webpack配置 在webpack.config.js里改路径
     alias: {
        "@src":path.resolve("src"),
        "@component":path.resolve("src/component"),
        "@pages":path.resolve("src/pages"),
        "@utils":path.resolve("src/utils"),
        }
    

    从此没遇到过任何引入相关的问题 开心

    这篇没看明白的可以看一下链接 我也是从这里学习到很多

    -作者直接打包 看的明明白白

    -codesandbox 案例

    遇到问题或卡住 请指出

    相关文章

      网友评论

        本文标题:vue 引入tinymce编辑器

        本文链接:https://www.haomeiwen.com/subject/ixkhxctx.html