一文完全掌握富文本编辑器TinyMCE

一、安装和引入

TinyMCE 是主流富文本编辑器,功能非常全,你需要的大多数功能它都支持,类似在线版的 Word。但它的优势也恰恰是它的劣势,如此之多的功能都放上来导致整个编辑器非常重,如果只是需要简单功能,上这么复杂的编辑器,大材小用。

TinyMCE 对 Vue.js 的集成和安装非常友好,支持 Vue3 和 TypeScript,文档写的也非常好。

TinyMCE-Vue文档
TinyMCE 6 原生文档

1. 安装

npm install --save "@tinymce/tinymce-vue@^5"

2. 引入

<script setup>
import {ref} from 'vue'
import Editor from '@tinymce/tinymce-vue'const setting=ref({xxx
})
const content=ref('')
</script><template>
<Editorapi-key="xxx":init="setting"v-model="content"
/>
</template>

其中,api-key需要到https://www.tiny.cloud/my-account/integrate注册并获取,否则编辑器是只读状态。

3. 三种模式

TinyMCE有三种模式:经典模式(classic)、内联模式(inline)、简洁模式(distraction-free)。

经典模式是默认模式,其在页面内嵌入iframe,编辑器里的内容和样式处于沙箱中,不会收到页面其它内容的影响。

内联模式需要初始化时配置 inline: true,内联区域未激活时,编辑器处于隐藏状态,当内联区域被激活时,编辑器工具栏才会显示。这种特性可用于所见即所得的页面编辑,且编辑器内容可受到页面其它区域的样式和脚本的影响。注意,内联模式在移动设备下无效。

简洁模式是基于内联模式,通过插件quickbars增强了交互性,要启用简洁模式,可在初始化时配置:plugins:['quickbars'], toolbar: false, menubar: false, inline: true

4. 手机端应用

为了使手机端编辑器正确表现,需要在页面head段添加元信息:<meta name="viewport" content="width=device-width, initial-scale=1">

注意,有些功能在手机端并不支持,比如inline、toolbar_sticky、table_grid、resize、object_resizing等。

二、初始化参数

1. 基本参数

// 尺寸
max_height:800,
min_height:400,
width: '100%'menubar: true, // 设置富文本编辑器菜单, 默认true
branding: false, // 关闭底部官网提示 默认true
statusbar: true, // 显示底部状态栏 默认true
readonly: false, // 设置只读属性 默认 false
resize: true, // 调节编辑器大小 默认 true
placeholder: '请输入内容', // 占位符theme:'silver',
skin:'oxide',
content_style: 'body, p{font-size: medium;}', // 为内容区编辑自定义css样式
language_url: '/tinymce/langs/zh_CN.js', // 中文化 默认为英文
language: 'zh_CN', // 设置富文本编辑器语言

关于语言和皮肤:

在项目public目录下新建tinymce目录,在该目录下分别新建langs和skins目录,用于存放语言包和皮肤包。

语言包下载地址为:https://www.tiny.cloud/get-tiny/language-packages/。文件下载后放入/public/tinymce/langs目录下,并配置 language_url:"/tinymce/langs/zh_CN.js", language:"zh_CN"

皮肤默认为oxide,我们可以通过官网提供的皮肤定制功能自定义皮肤:https://skin.tiny.cloud/t5/。将自定义的皮肤文件(CUSTOM)下载后,解压到/public/tinymce/skins目录下,并配置 skin:'CUSTOM', skin_url:'/tinymce/skins/CUSTOM/skins/ui'

2. toolbar配置

(1) toolbar基本配置:

toolbar:'undo redo styles bold italic | link image',
toolbar_mode: 'warp',	//超出宽度的展示方式
toolbar_sticky: true	//超出高度的跟随方式

toolbar可使用字符串或数组形式。使用字符串形式时,通过 | 分组,当超出页面宽度后,分组内容会折叠,折叠模式可通过toolbar_mode参数进行配置。也可设置为false关闭toolbar。

toolbar_mode有四种模式:floating、sliding、scrolling和wrap。floating将以悬浮模式弹出折叠内容,sliding将把折叠内容展出到工具栏下方,scrolling将使工具栏左右可滚动,wrap与sliding布局相同,但默认展开。

toolbar_sticky设置窗口向下滚动时工具栏是否跟随滚动。

(2) 常用toolbar按钮

名字描述
aligncenterCenter aligns the current block or image.
alignjustifyFull aligns the current block or image.
alignleftLeft aligns the current block or image.
alignnoneRemoves the alignment of the current block or image.
alignrightRight aligns the current block or image.
blockquoteApplies block quote format to the current block level element.
backcolorApplies background color to selection.
blocksDropdown list with block formats to apply to selection.
boldApplies the bold format to the current selection.
copyCopies the current selection into clipboard.
cutCuts the current selection into clipboard.
fontfamilyDropdown list with font families to apply to selection.
fontsizeDropdown list with font sizes to apply to selection.``The fontsize and fontsizeinput toolbar buttons should not be placed in a toolbar group together or otherwise presented together.
fontsizeinputText entry input field to change font size of selection or current insertion point. Also provides increase and decrease font size buttons on either side of said input field.This toolbar button is commonly used in conjunction with the `<a href="https://www.tiny.cloud/docs/tinymce/6/user-formatting-options/#font_size_input_default_unit" class="xref page">font_size_input_default</a>` configuration option.The fontsize and fontsizeinput toolbar buttons should not be placed in a toolbar group together or otherwise presented together.
forecolorApplies foreground/text color to selection.
h1Changes current line to the “Heading 1” style.
h2Changes current line to the “Heading 2” style.
h3Changes current line to the “Heading 3” style.
h4Changes current line to the “Heading 4” style.
h5Changes current line to the “Heading 5” style.
h6Changes current line to the “Heading 6” style.
hrInserts a horizontal rule into the editor.
indentIndents the current list item or block element.
italicApplies the italic format to the current selection.
languageDropdown list with languages to apply to the selection. This button requires thecontent_langs option.
lineheightDropdown list with line heights to apply to selection.
newdocumentCreates a new document.
outdentOutdents the current list item or block element.
pastePastes the current clipboard into the editor.
pastetextToggles plain text pasting mode on/off. When in plain text mode, all rich content is converted into plain text.
printPrints the current editor contents.
redoTo redo the last undone operation.
removeRemoves (deletes) the selected content or the content before the cursor position.
removeformatRemoves the formatting from the current selection.
selectallSelects all content in the editor.
strikethroughApplies strike though format to the current selection.
stylesDropdown list with styles to apply to selection.
subscriptApplies subscript format to the current selection.
superscriptApplies superscript format to the current selection.
underlineApplies the underline format to the current selection.
undoTo undo the last operation.
visualaidToggles the visual aids for invisible elements.

3. plugin配置

(1) advlist

高级列表,依赖于lists插件。

plugins:'lists advlist'
toolbar:'bullist numlist'

bullist提供不同样式是列表(圆形、方形等),numlist提供数字开头列表(可以为数字、字母、罗马字母等)

(2) anchor

锚点,可配合link插件,在插入url时选择设定的锚点,实现页内跳转。

plugins:'anchor',
toolbar:'anchor'

(3) autolink

自动将url地址转化为link。

plugins:'autolink'

(4) autoresize

随着用户输入内容的增多,自动调整编辑器高度。若设定了max_height,当编辑器高度达到设定值时,将停止自动调整。

plugins:'autoresize'

(5) autosave

根据设定时间间隔自动保存内容,以及在离开页面时询问是否保存内容。

plugins:'autosave',
toolbar: 'restoredraft',
autosave_interval: '20s', //自动保存的时间间隔

(6) code

插入和编辑文档的html源码。

plugins:'code',
toolbar:'code'

(7) codesample

插入代码块,可渲染html、js、c、JAVA、PHP、Python等多种类型代码。

plugins:'codesample',
toolbar:'codesample'

(8) emoticons

插入表情。

plugins:'emoticons',
toolbar:'emoticons'

(9) fullscreen

全屏。

plugins:'fullscreen',
toolbar:'fullscreen'

(10) image

插入图片。

上传本地图片有两种配置方法:一种是使用image插件提供的image_uploadtab,需要同时配置image_upload_url;另一种是配置file_picker_callback,针对link、media和image三种类型的文件,可统一使用file_picker_callback进行处理。

示例中是使用image_uploadtab配置本地上传图片。本文第三节将介绍如何配置file_picker_callback分别上传文件、多媒体和图片,该方式是本人推荐的文件上传方式。

plugins:'image',
toolbar:'image',
image_uploadtab:true,                             //允许从本地上传图片,需要同时配置images_upload_url
images_upload_url:'/api/information/upload_img',  //配置后台接受和存储图片的url
automatic_uploads:true,                           //开启自动上传,可以不用配置image_upload_handler,上传图片将包含在报文files段,名字为file。
// images_upload_handler:handleUploadImg,         //手工上传函数,见下。
image_prepend_url:'/minio/information/',          //图片上传后的url前缀
paste_data_images: true,                          //可以直接拖动图片或粘贴图片到编辑区。
images_file_types:'jpeg,jpg,png'                  //默认值为'jpeg,jpg,jpe,jfi,jif,jfif,png,gif,bmp,webp'
//手工配置images_upload_handler:handleUploadImg,则使用该回调函数上传图片。回调函数返回一个Promise对象,上传成功则返回Promise.resolve('图片url')。
//若返回的图片名,可配合image_prepend_url配置项设定图片的url前缀。
async function handleUploadImg(blobInfo, progress){let formData=new FormData()formData.append('file',blobInfo.blob(), 'img.png')// 上传头像var ret=await axios.post(`/api/information/upload_img`,formData,{headers:{'Content-Type':'multipart/form-data'}})return ret.data.location
}

(11) link

插入超链接。若配置file_picker_callback,则可以上传本地文件,具体方式见第三节。

plugins:'link',
toolbar:'link'

(12) lists

插入多种类型的列表。

plugins:'lists',
toolbar:'numlist bullist'   //数字、字母、希腊字母开头的列表和圆圈、圆点、方块开头的列表

(13) media

插入多媒体文件。若配置file_picker_callback,则可以上传本地文件,具体方式见第三节。

plugins:'media',
toolbar:'media'

(14) preview

预览。

plugins:'preview',
toolbar:'preview'

(15) save

保存文件。

plugins:'save',
toolbar:'save',
save_onsavecallback:()=>{//执行axios上传,保存文件。...
}

(16) searchreplace

查找和替换。

plugins:'searchreplace',
toolbar:'searchreplace'

(17) table

表格。

plugins:'table',
toolbar:'table'

(18) wordcount

在状态栏显示单词数。

plugins:'wordcount',
toolbar:'wordcount'

4. menu配置

若使用toolbox,可关闭menu。

menubar:false

也可通过类似配置toolbox的方式配置menu:

menubar:'file edit insert view format table tools help'

三、上传文件

通过配置file_picker_callback,可以在link、image、media插件显示上传本地文件按钮。

file_picker_callback:handleUploadFile,
file_picker_types:'file image media',    //默认三种类型,分别对应link、image和media组件的上传

回调函数有三个参数(callback, value, meta)。

callback是一个函数,用于返回上传文件的url。

value没有用。

meta提供组件类别信息,通过meta.filetype可以判断回调来自于link、image还是media组件。

function handleUploadFile(callback, value, meta){var input=document.createElement('input')input.setAttribute('type','file')var accept_filetypes=''switch(meta.filetype){  //判断回调来自于哪个组件,并为不同组件设置文件后缀过滤。case 'file':accept_filetypes='.doc,.docx,.ppt,.pptx,.xls,.xlsx,.pdf,.txt' breakcase 'image':accept_filetypes='.webp,.png,.jpg,.jpeg,.gif,.svg'breakcase 'media':accept_filetypes='.weba,.wav,.mp3,.webm,.mpg,.mpeg,.avi,.wmv'break}input.setAttribute('accept',accept_filetypes) //设置文件选择框的文件过滤选项。input.click() //打开文件选择框input.onchange=async ()=>{ //选中文件点击确认后,执行上传操作var file=input.files[0]let formData=new FormData()formData.append('content_type',file.type)formData.append('file', file, file.name)var ret=await axios.post('/api/information/upload',formData,{headers:{'Content-Type':'multipart/form-data'}})callback('/minio/information/'+ret.data.name)}
}

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

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

相关文章

Imagination大学计划 rv-fpga实验安装教程及注意事项

1. 实验环境安装 1.1 vivado 2019.2 网盘链接&#xff1a;Vivado_2019.2.tar.gz_免费高速下载|百度网盘-分享无限制 (baidu.com) 安装教程&#xff1a; 网盘中vivado文件夹下载到本地后解压打开&#xff0c;导航到下图&#xff0c;打开xsetup.exe文件。如果打开后有小弹窗直接…

论文阅读之Multimodal Chain-of-Thought Reasoning in Language Models

文章目录 简介摘要引言多模态思维链推理的挑战多模态CoT框架多模态CoT模型架构细节编码模块融合模块解码模块 实验结果总结 简介 本文主要对2023一篇论文《Multimodal Chain-of-Thought Reasoning in Language Models》主要内容进行介绍。 摘要 大型语言模型&#xff08;LLM…

重生奇迹mu战士大师技能加点怎么加

1、在重生奇迹MU中&#xff0c;战士大师的技能加点需要根据个人的游戏风格和需求来决定。一般来说&#xff0c;战士大师可以优先加点力量和体力&#xff0c;以增加攻击和生存能力。同时&#xff0c;可以适当加点敏捷来提高闪避和命中率。 2、在技能方面&#xff0c;可以根据个人…

深入剖析 Java 类属性与类方法的应用

Java 类属性 Java 类属性&#xff0c;也称为字段&#xff0c;是类中的变量。它们用于存储与类相关的数据。 创建类属性 在类定义中声明属性&#xff1a; public class Main {int x; // 属性String name; // 属性 }访问类属性 使用点语法访问对象的属性&#xff1a; Main …

数组的内存执行原理

一.Java内存分配介绍 JVM虚拟机会在内存中执行程序 java内存分配介绍 方法区&#xff0c;栈&#xff0c;堆 首先将编译过后的.class文件送入方法区中。当类开始运行时将方法调入栈内存中&#xff0c;变量也是属于方法的&#xff0c;因此同方法一起进入栈内存中。当main方法要…

Word背景图片设置,提升文章美观度的4个小技巧!

“我才刚开始使用Word&#xff0c;想问问大家Word中背景图片应该怎么设置呢&#xff1f;有什么比较好用的设置方法可以分享一下吗&#xff1f;” 在日常办公中&#xff0c;我们经常需要使用Word来对文件进行处理。在编写Word时&#xff0c;如果给文档加入背景图片&#xff0c;会…

[pcie]通过sysfs访问PCI设备资源

通过sysfs访问PCI设备资源 参考文档&#xff1a; https://www.kernel.org/doc/html/next/translations/zh_CN/PCI/sysfs-pci.html

直播相机,AI纪元!云犀首款AI直播相机重磅发布!

3月7日晚&#xff0c;云犀重磅发布首款AI直播相机-云犀智瞳Pro&#xff01;据悉该相机内置了云犀首款AI直播调参大模型&#xff0c;能够通过AI分析智能调节直播间参数&#xff0c;赋予直播间画面AI智能调控能力。 云犀AI直播相机&#xff0c;让直播更简单 此次云犀AI直播相机的…

企业业务在ERP系统中的流程分析

ERP系统能将企业的信息流、资金流、物流等进行统一管控&#xff0c;并且可以通过它优化企业的业务流程。本文主要介绍企业的一些业务在ERP中的流程设置。 首先是销售管理业务&#xff0c;销售管理以销售部门为核心&#xff0c;仓库、财务部门为辅助&#xff0c;偶尔需要生产、质…

mysql中insert … select锁范围

1、执行 insert … select 的时候&#xff0c;对目标表也不是锁全表&#xff0c;而是只锁住需要访问的资源。 例如&#xff0c; CREATE TABLE t (id int(11) NOT NULL AUTO_INCREMENT,c int(11) DEFAULT NULL,d int(11) DEFAULT NULL,PRIMARY KEY (id),UNIQUE KEY c (c) ) EN…

3.6 C语言和汇编语言混合编程 “每日读书”

在一些嵌入式场合&#xff0c;我们经常看到C程序和汇编程序相互调用&#xff0c;混合编程&#xff0c;如在ARM启动代码中&#xff0c;系统上电首先运行的是汇编代码&#xff0c;等初始化好内存堆栈环境之后&#xff0c;才会跳到C程序中执行&#xff0c;对嵌入式软件进行优化时&…

无人值守设备如何高效运维?向日葵这几个远控功能你必须了解

户外广告牌、无人售货机、商场可交互的指引大屏、各种智能自助办事终端.... 上述无人值守设备&#xff0c;想必我们已经非常熟悉了&#xff0c;在科技不断发展的今天&#xff0c;这些设备在商业中已经逐渐成为中坚力量&#xff0c;并且承载着企业的一线业务。 而从企业IT运维…

一 windso10 笔记本刷linux cent os7.9系统

1:准备材料 16G以上U盘, 笔记本一台 镜像选了阿里云镜像:centos-7-isos-x86_64安装包下载_开源镜像站-阿里云 软件:链接&#xff1a;https://pan.baidu.com/s/13WDp2bBU1Pdx4gRDfmBetg 提取码&#xff1a;09s3 2:把镜像写入U盘,本人已经写入好了,选择镜像,点开始就是,确定等…

Dialog弹出动画

1.从上往下弹出: (包含了2种实现方式一种是基于放大效果的&#xff0c;一种是基于平移方式的&#xff0c;可以自己放开注释看效果&#xff1b;需要在res下新建anim文件夹用于存放动画文件) <style name"AnimTop" parent"android:style/Animation">&…

Mysql 学习(十五)redo 日志

redo 日志 什么是redo日志&#xff1f;在说这个之前我们先来想一个场景&#xff0c;在访问磁盘的页面之前&#xff0c;我们会先把页面缓存到Buffer Pool之后&#xff0c;才会访问。写页面的时候也会先将buffer pool中的页面修改之后&#xff0c;然后在某个时机才会刷新到磁盘中…

java项目开发过程中,栈溢出错误的解决方式

项目场景&#xff1a; 背景&#xff1a; 使用 idea 开发java项目时&#xff0c;栈溢出错误的解决方式。 问题描述 问题&#xff1a; Handler dispatch failed; nested exception is java.lang.StackOverflowErrororg.springframework.web.util.NestedServletException: Hand…

uniapp开发技术100问?

这些问题更深入地探讨了UniApp开发中的核心技术和实践&#xff0c;覆盖了从基础架构搭建到高级功能实现的各个环节&#xff0c;有助于开发者更好地理解和掌握UniApp的应用开发全流程。 基础概念与入门 UniApp是什么&#xff1f;它的主要优势是什么&#xff1f; UniApp基于什么前…

面试官:JVM有哪些优化手段?

JIT、逃逸分析等都属于JVM优化手段&#xff0c;JVM&#xff08;Java 虚拟机&#xff09;优化手段是指在运行 Java 程序时&#xff0c;通过对字节码的编译和执行过程进行优化&#xff0c;以提升程序的性能和效率。 JVM 优化手段主要有以下几个&#xff1a; JIT&#xff08;Just…

邮件发送API使用指南?怎么选邮件api接口?

邮件发送api接口是什么&#xff1f;如何自定义API接口发信域名&#xff1f; 通过邮件发送API&#xff0c;我们可以轻松实现邮件的批量发送、个性化定制以及实时追踪等功能。AokSend将详细介绍邮件发送API的使用方法和注意事项&#xff0c;帮助您更好地利用这一工具&#xff0c…

安卓 Kotlin 面试题 31-40

&#x1f525; 31、简述Kotlin 中的内联类&#xff0c;我们什么时候需要&#xff1f;&#x1f525; 有时&#xff0c;业务逻辑需要围绕某种类型创建包装器。 但是&#xff0c;由于额外的堆分配&#xff0c;它会引入运行时开销。 此外&#xff0c;如果包装的类型是原始类型&…