vue+element ui +vue-quill-editor 富文本图片上传到骑牛云

vue-quill-editor上传图片会转换成base64格式,但是这不是我们想要的,之后翻了很多文章才找到想要的,下面直接上代码

<style lang="sass">
.quill-editor
min-height: 500px
background:#fff
.ql-container
min-height: 500px

.ql-snow .ql-editor img
max-width: 480px

.ql-editor .ql-video
max-width: 480px
</style>

<template>
<div>
<!-- quill-editor插件标签 分别绑定各个事件-->
<quill-editor v-model="content" ref="myQuillEditor" :options="editorOption" @change="onEditorChange($event)">
</quill-editor>
<!-- 文件上传input 将它隐藏-->
<el-upload class="upload-demo" :action="qnLocation" :before-upload=‘beforeUpload‘ :data="uploadData" :on-success=‘upScuccess‘
ref="upload" style="display:none">
<el-button size="small" type="primary" id="imgInput" element-loading-text="插入中,请稍候">点击上传</el-button>
</el-upload>
</div>

</template>

<script>
import Quill from ‘quill‘
const STATICDOMAIN = ‘http://otq0t8ph7.bkt.clouddn.com/‘ // 图片服务器的域名,展示时使用
const STATVIDEO = ‘http://otq0t8ph7.bkt.clouddn.com/‘

export default {
data () {
return {
content: ‘‘, // 文章内容
editorOption: {
placeholder: ‘请输入内容‘,
modules: { // 配置富文本
toolbar: [
[‘bold‘, ‘italic‘, ‘underline‘, ‘strike‘],
[‘blockquote‘, ‘code-block‘],
[{ ‘header‘: 1 }, { ‘header‘: 2 }],
[{ ‘direction‘: ‘rtl‘ }],
[{ ‘size‘: [‘small‘, false, ‘large‘, ‘huge‘] }],
[{ ‘header‘: [1, 2, 3, 4, 5, 6, false] }],
[{ ‘color‘: [] }, { ‘background‘: [] }],
[{ ‘font‘: [] }],
[{ ‘align‘: [] }],
[‘clean‘],
[‘link‘, ‘image‘, ‘video‘]
]
}
},
addRange: [],
uploadData: {},
photoUrl: ‘‘, // 上传图片地址
uploadType: ‘‘ // 上传的文件类型(图片、视频)
}
},
computed: {
// 上传七牛的actiond地址,http 和 https 不一样
qnLocation () {
return location.protocol === ‘http:‘ ? ‘http://upload.qiniu.com‘ : ‘https://up.qbox.me‘
}
},
methods: {
// 图片上传之前调取的函数
// 这个钩子还支持 promise
beforeUpload (file) {
return this.qnUpload(file)
},
// 图片上传前获得数据token数据
qnUpload (file) {
this.fullscreenLoading = true
const suffix = file.name.split(‘.‘)
const ext = suffix.splice(suffix.length - 1, 1)[0]
console.log(this.uploadType)
if (this.uploadType === ‘image‘) { // 如果是点击插入图片
// TODO 图片格式/大小限制
alert(‘上传图片‘)
return this.$axios(‘common/get_qiniu_token‘).then(res => {
this.uploadData = {
key: `image/${suffix.join(‘.‘)}_${new Date().getTime()}.${ext}`,
token: res.data
}
})
} else if (this.uploadType === ‘video‘) { // 如果是点击插入视频
return this.$axios(‘common/get_qiniu_token‘).then(res => {
this.uploadData = {
key: `video/${suffix.join(‘.‘)}_${new Date().getTime()}.${ext}`,
token: res
}
})
}
},

// 图片上传成功回调 插入到编辑器中
upScuccess (e, file, fileList) {
console.log(e)
this.fullscreenLoading = false
let vm = this
let url = ‘‘
if (this.uploadType === ‘image‘) { // 获得文件上传后的URL地址
url = STATICDOMAIN + e.key
} else if (this.uploadType === ‘video‘) {
url = STATVIDEO + e.key
}
if (url != null && url.length > 0) { // 将文件上传后的URL地址插入到编辑器文本中
let value = url
// API: https://segmentfault.com/q/1010000008951906
// this.$refs.myTextEditor.quillEditor.getSelection();
// 获取光标位置对象,里面有两个属性,一个是index 还有 一个length,这里要用range.index,即当前光标之前的内容长度,然后再利用 insertEmbed(length, ‘image‘, imageUrl),插入图片即可。
vm.addRange = vm.$refs.myQuillEditor.quill.getSelection()
value = value.indexOf(‘http‘) !== -1 ? value : ‘http:‘ + value
vm.$refs.myQuillEditor.quill.insertEmbed(vm.addRange !== null ? vm.addRange.index : 0, vm.uploadType, value, Quill.sources.USER) // 调用编辑器的 insertEmbed 方法,插入URL
} else {
this.$message.error(`${vm.uploadType}插入失败`)
}
this.$refs[‘upload‘].clearFiles() // 插入成功后清除input的内容
},

// 点击图片ICON触发事件
imgHandler (state) {
this.addRange = this.$refs.myQuillEditor.quill.getSelection()
if (state) {
let fileInput = document.getElementById(‘imgInput‘)
fileInput.click() // 加一个触发事件
}
this.uploadType = ‘image‘
},
onEditorChange ({ editor, html, text }) {
console.log(‘editor change!‘, html)
this.content = html
},
// 点击视频ICON触发事件
videoHandler (state) {
this.addRange = this.$refs.myQuillEditor.quill.getSelection()
if (state) {
let fileInput = document.getElementById(‘imgInput‘)
fileInput.click() // 加一个触发事件
}
this.uploadType = ‘video‘
}
},
created () {
this.$refs = {
myQuillEditor: HTMLInputElement,
imgInput: HTMLInputElement
}
},
// 页面加载后执行 为编辑器的图片图标和视频图标绑定点击事件
mounted () {
// 为图片ICON绑定事件 getModule 为编辑器的内部属性
console.log(this.$refs.myQuillEditor.quill)
this.$refs.myQuillEditor.quill.getModule(‘toolbar‘).addHandler(‘image‘, this.imgHandler)
this.$refs.myQuillEditor.quill.getModule(‘toolbar‘).addHandler(‘video‘, this.videoHandler) // 为视频ICON绑定事件
}
}
</script>

参考文章:

https://github.com/surmon-china/vue-quill-editor/issues/102

时间: 2024-12-08 18:47:58

vue+element ui +vue-quill-editor 富文本图片上传到骑牛云的相关文章

百度ueditor富文本编辑器上传视频设置封面和禁止视频全屏、下载功能

最近在工作中用到了ueditor,这个最开始不是我接入到后台管理系统的,我半路接手,百度官方给的文档又写的很一般,不易理解,所以有很多问题解决的很麻烦. 在使用ueditor过程中,目前遇到的一些问题: 我们公司运营需要用ueditor实现微信公众号文章的编写,之前她们是直接把微信公众号文章复制到ueditor编辑器中,这样子是可以直接使用的.这样带来的一个问题是, 如果文章里有视频播放的话,视频的播放源全都是腾讯视频,我们公司商务反对了这种行为,所以运营提出文章内的视频由本地上传或者使用第三方

修改UMeditor(百度富文本编辑器)上传视频

1. createPreviewVideo 所在位置video.js 2.修改 creatInsertStr 所在位置 umeditor.js 修改原因:小程序不支持<embed>标签. Date:11月1日 原文地址:https://www.cnblogs.com/sk8-xz/p/11790976.html

vue项目富文本编辑器vue-quill-editor之自定义图片上传

使用富文本编辑器的第一步肯定是先安装依赖 npm i vue-quill-editor 1.如果按照官网富文本编辑器中的图片上传是将图片转为base64格式的,如果需要上传图片到自己的服务器,需要修改配置. 创建一个quill-config.js的文件,里面写自定义图片上传.代码如下 /*富文本编辑图片上传配置*/ const uploadConfig = { action: '', // 必填参数 图片上传地址 methods: 'POST', // 必填参数 图片上传方式 token: ''

vue+element ui项目总结点(三)富文本编辑器 vue-wangeditor

1.参考 https://www.npmjs.com/package/vue-wangeditor 使用该富文本编辑器 <template> <div class="egit_box"> <p>富文本编辑器试用</p> <div class="text_box" style="width: 100%;display: flex;justify-content: center;"> <

vue + element ui 阻止表单输入框回车刷新页面

问题 在 vue+element ui 中只有一个输入框(el-input)的情况下,回车会提交表单. 解决方案 在 el-form 上加上 @submit.native.prevent 这个则会阻止表单回车提交. 测试 下面的代码出现表单回车提交 <body> <div id="app"> <el-form ref="form" :model="form" label-width="80px"&

vue使用富文本编辑器vue-quill-editor实现配合后台将图片上传至七牛

一.全局注册:main.js import Vue from 'vue' import VueQuillEditor, { Quill } from 'vue-quill-editor' import { ImageDrop } from 'quill-image-drop-module' import ImageResize from 'quill-image-resize-module' import 'quill/dist/quill.core.css' import 'quill/dis

百度editor富文本编辑器在火狐浏览器中的兼容性

最近做项目的时候遇到了百度的一个神器:editor富文本编辑器.但是也遇到了很多兼容性的问题,现在写一段随笔一起分享一下: 第一:在火狐浏览器中,该编辑器部分的编辑功能按钮不能显示 可以看出,在火狐浏览器中只会显示编辑框,而上面的编辑按钮缺没有.(但是在IE7,IE8上不能显示的原因在于新版本中屏蔽了 anonymous()方法,可以通过修改eWebEditor的JS文件来修正错误) 解决方案:打开火狐-->工具栏-->“工具”-->"添加附件",使用搜索功能来搜索“

vue富文本编辑,编辑自动预览,单个图片上传不能预览的问题解决:

//预览<div class="htmlViewBox"> <p v-html="activity_html_defaultMsg" v-show="htmlDefaultMsg"></p> <p v-show="defaultMsg=='' && htmlDefaultMsg==''">请在富文本编辑器内容</p></div>//编辑器&

CKEditor5 + vue2.0 富文本编辑器 图片上传、highlight等用法

因业务需求,要在 vue2.0 的项目里使用富文本编辑器,经过调研多个编辑器,CKEditor5 支持 vue,遂采用.因 CKEditor5 文档比较少,此处记录下引用和一些基本用法. CKEditor5官网 https://ckeditor.com/docs/ckeditor5/latest/builds/guides/overview.html CKEditor5 引入 有四种编辑器可供下载,根据自己的需求选择,因为开发需求需要颜色笔,所以采用 Document editor. 如果之前有