WangEdit富文本编辑器增加上传视频功能

乘着今天中午的时间 对以前项目的一个需求进行一定的处理

前天去了甲方公司

接到了了一个新的需求

就是可以把项目的一个富文本的编辑器可以设置为能够上传视频

于是乎

就要对vue里面的这个组件进行操作了

首先我们可以看一眼官网的文档

需要用到的就直接到官网文档进行查询即可了

 需求(接口文档)

 

由于官网的的文档是对原生js进行说明的

所以vue的写法就可以这样先写了、

代码部分(封装子组件)

<template lang="html"><div class="editor"><!--定义的为表头的属性--><div ref="toolbar" class="toolbar"></div><!--定义的为表格的属性--><div ref="editor" class="text" ></div></div>
</template>
<script>
/*引入王edit插件*/
import E from 'wangeditor'
import {ACCESS_TOKEN} from "@/store/KeyConstants";
/*开始引入Vue的模块*/
import Vue from "vue";
export default {name: 'EditorBar',data() {return {editor: null,info_: null,UploadVidio:'',}},model: {prop: 'value',event: 'change'},props: {value: {type: String,default: ''},isClear: {type: Boolean,default: false},setMode:{type:Boolean,request:true}},watch: {isClear(val) {// 触发清除文本域内容if (val) {this.editor.txt.clear()this.info_ = null}},value: function(value) {if (value !== this.editor.txt.html()) {this.editor.txt.html(this.value)}},//value为编辑框输入的内容,这里我监听了一下值,当父组件调用得时候,如果给value赋值了,子组件将会显示父组件赋给的值},created() {/*控制上传图片的逻辑*/this.$nextTick(()=>{this.seteditor()this.editor.txt.html(this.value)})},methods: {seteditor() {const token = Vue.ls.get(ACCESS_TOKEN);/*选中对应的元素*/this.editor = new E(this.$refs.toolbar, this.$refs.editor)/*设置存储照片的格式*/// this.editor.config.uploadImgShowBase64 = true // base 64 存储图片this.editor.config.uploadVideoServer = 't.com/api/v1/upload/picture'// 配置服务器端地址// 自定义 headerthis. editor.config.uploadVideoHeaders = {'Authorization': `Bearer ` + token}this.editor.config.uploadVideoName = 'file'//后端接收上传文件的参数名(这是配置视频)this.editor.config.uploadImgServer = '.com/api/v1/upload/picture'// 配置服务器端地址// 自定义 headerthis.editor.config.uploadImgHeaders = {'Authorization': `Bearer ` + token}this.editor.config.uploadFileName = 'file' // 后端接受上传文件的参数名(这是配置图片)this.editor.config.uploadImgMaxSize = 2 * 1024 * 1024 // 将图片大小限制为 2Mthis.editor.config.uploadImgMaxLength = 6 // 限制一次最多上传 3 张图片this.editor.config.uploadImgTimeout = 3 * 60 * 1000 // 设置超时时间// 配置菜单this.editor.config.menus = ['head', // 标题'bold', // 粗体'fontSize', // 字号'fontName', // 字体'italic', // 斜体'underline', // 下划线'strikeThrough', // 删除线'foreColor', // 文字颜色'backColor', // 背景颜色'link', // 插入链接'list', // 列表'justify', // 对齐方式'quote', // 引用'emoticon', // 表情'image', // 插入图片'table', // 表格'video', // 插入视频'code', // 插入代码'undo', // 撤销'redo', // 重复'fullscreen' // 全屏]//上传图片的回调this.editor.config.uploadImgHooks = {fail: (xhr, editor, result) => {// 插入图片失败回调},success: (xhr, editor, result) => {// 图片上传成功回调},timeout: (xhr, editor) => {// 网络超时的回调},error: (xhr, editor) => {// 图片上传错误的回调},customInsert: (insertImg, result, editor) => {// 图片上传成功,插入图片的回调//result为上传图片成功的时候返回的数据,这里我打印了一下发现后台返回的是data:[{url:"路径的形式"},...]//insertImg()为插入图片的函数//循环插入图片// for (let i = 0; i < 1; i++) {// postAction('/content/picture',{file})let url =  result.dataconsole.log(url)insertImg(url)// }}}this.editor.config.onchange = (html) => {this.info_ = html // 绑定当前逐渐地值this.$emit('ChangePicture', this.info_) // 将内容同步到父组件中}// 视频上传
/*      this.editor.config.uploadVideoServer ="http://otp.cdinfotech.top/file/upload_images"; // 上传接口this.editor.config.uploadVideoParams = {"Content-Type": "multipart/form-data; boundary=----WebKitFormBoundarycZm1pHksXeHS6t5r"}*/
/*      this.editor.config.uploadVideoHooks = {// 上传完成处理方法customInsert: function (insertVideo, result) {if (result.code == 0) {(result.data || "").split(",").forEach(function (link) {link && insertVideo(link);});} else {/!* flavrShowByTime("上传失败", null, "danger");*!/}},};*///上传视频的回调this.editor.config.uploadVideoHooks = {// 上传视频之前
/*        before: function(xhr) {console.log(xhr)// 可阻止视频上传return {prevent: true,msg: '需要提示给用户的错误信息'}},*/// 视频上传并返回了结果,视频插入已成功success: function(xhr) {console.log('success', xhr)},// 视频上传并返回了结果,但视频插入时出错了fail: function(xhr, editor, resData) {console.log('fail', resData)},// 上传视频出错,一般为 http 请求的错误error: function(xhr, editor, resData) {console.log('error', xhr, resData)},// 上传视频超时timeout: function(xhr) {console.log('timeout')},// 视频上传并返回了结果,想要自己把视频插入到编辑器中// 例如服务器端返回的不是 { errno: 0, data: { url : '.....'} } 这种格式,可使用 customInsertcustomInsert: function(insertVideoFn, result) {// result 即服务端返回的接口console.log('customInsert', result)// insertVideoFn 可把视频插入到编辑器,传入视频 src ,执行函数即可//result.data 就是url的值insertVideoFn(result.data)}}this.editor.create()}}
}
</script><style lang="css">
.editor {width: 100%;margin: 0 auto;position: relative;z-index: 0;
}
.toolbar {border: 1px solid #ccc;
}
.text {border: 1px solid #ccc;min-height: 500px;
}
</style>

这边直接上代码 以后用到富文本可以直接使用

就很nice

 我是歌谣 这部分支队wangEdit使用有效 放弃很容易 但是坚持一定很酷

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/408307.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

大学生应当趁早谋划未来

最近&#xff0c;有几个CSDN网友&#xff0c;主要是在校大学生&#xff0c;遇到了一些困惑&#xff0c;寻求我的“解惑”。我的表弟&#xff0c;大四即将毕业&#xff0c;也是如此。上大学的时候&#xff0c;我也经常遇到困惑&#xff0c;非常迷茫&#xff0c;我非常能理解他们…

[论文笔记]Outfit Compatibility Prediction and Diagnosis with Multi-Layered Comparison Network

Outfit Compatibility Prediction and Diagnosis with Multi-Layered Comparison Network 论文题目&#xff1a;Outfit Compatibility Prediction and Diagnosis with Multi-Layered Comparison Network 论文地址&#xff1a;https://arxiv.org/abs/1907.11496 代码&#xf…

关于如何参与到开源项目中《How To Succeed In Open Source ( In Ways You Haven't Considered Yet )》...

转自&#xff1a;http://gaslight.co/blog/how-to-succeed-in-open-source-in-ways-you-havent-considered-yet It’s Easy to Feel Entitled in the Open Source World A while back, it was easy to think of open source projects as real products. I think that I thought…

[论文笔记]弱监督条件下基于相似性条件学习的服饰搭配生成

论文&#xff1a;《Learning Similarity Conditions Without Explicit Supervision》 论文地址&#xff1a;https://arxiv.org/pdf/1908.08589.pdf 代码地址&#xff1a;https://github.com/rxtan2/Learning-Similarity-Conditions 本文首发于 https://mp.weixin.qq.com/s/WH…

分类法过时了吗?【ZZ】

分类法过时了吗&#xff1f;引用网址: http://www.qiji.cn/baike/contents/122.html 更新日期: 2005年6月09 周四 Posted By ianwest 更多 标签: YAHOO Sina Google 页面工具: [前一项] [后一项] { 发表评论 } 计算机和互联网的出现意味着新阅读时代的来临&#xff0c;如何组织…

神经网络不收敛的 11 个原因及其解决办法

原文&#xff1a;http://theorangeduck.com/page/neural-network-not-working 原文标题&#xff1a;My Neural Network isn’t working! What should I do? 译文作者&#xff1a;kbsc13 联系方式&#xff1a; Github&#xff1a;https://github.com/ccc013 知乎专栏&…

7 个有用的 PyTorch 技巧

原文&#xff1a;https://www.reddit.com/r/MachineLearning/comments/n9fti7/d_a_few_helpful_pytorch_tips_examples_included/ 原文标题&#xff1a;a_few_helpful_pytorch_tips_examples_included 译文作者&#xff1a;kbsc13 联系方式&#xff1a; Github&#xff1a;…

HTML5 CSS3的新交互特性

什么是HTML5和CSS3 HTML和CSS并不难理解。HTML为构成网页的主要语言。通过这种语言&#xff0c;我们可以向计算机说明网页格式、内容、显示效果等等。而CSS则是专 门用来控制网页显示效果的语言。这时候问题出来了&#xff0c;为什么我们要单独使用CSS呢&#xff0c;HTML不是一…

基于Colab Pro Google Drive的Kaggle实战

原文&#xff1a;https://hippocampus-garden.com/kaggle_colab/ 原文标题&#xff1a;How to Kaggle with Colab Pro & Google Drive 译文作者&#xff1a;kbsc13 联系方式&#xff1a; Github&#xff1a;https://github.com/ccc013/AI_algorithm_notes 微信公众号&…

Focal Loss 论文笔记

论文&#xff1a;《Focal Loss for Dense Object Detection》 论文地址&#xff1a;https://arxiv.org/abs/1708.02002 代码地址&#xff1a; 官方 github&#xff1a;https://github.com/facebookresearch/detectrontensorflow&#xff1a;https://github.com/tensorflow/m…

php 构造骚扰短信发送机(仅供学习与参考,请勿用于非法用途)

最近在某宝买东西得罪了某黑心商家。。然后他就疯狂的给我发骚扰短信&#xff0c;烦死了。。。 短信大概就是利用一些网站的手机验证码来实现的。。 所以再被他疯狂骚扰后决定自己动手反击。。 php主要用到了curl的函数库扩展&#xff0c;然后主要要做的还是去抓包分析网站注册…

A Quantization-Friendly Separable Convolution for MobileNets

论文&#xff1a;《A Quantization-Friendly Separable Convolution for MobileNets》 论文地址&#xff1a;https://arxiv.org/pdf/1803.08607.pdf 这篇是高通在 2018 年发表的一篇论文&#xff0c;主要是针对在量化方面效果很差的 MobileNetV1 网络进行研究&#xff0c;探索…