照着腾讯文档小程序开发了微信小程序富文本编辑器组件,这几天做个整理,如有这个需求可以前往腾讯文档小程序 *** 作看看实际效果。毕竟参照的是微信自家小程序,无法做到百分百效果,只能按现有开放api尽可能实现。
项目地址:
https://github.com/chellel/wechat-editor-project
uniapp插件市场:
https://ext.dcloud.net.cn/plugin?id=6365
editor富文本编辑器组件官方文档:
https://developers.weixin.qq.com/miniprogram/dev/component/editor.html
否则会受到小程序css影响。小程序本身editor标签有css样式:
editor {
display: block
position: relative
box-sizing: border-box
-webkit-user-select: text
user-select: text
outline: 0
overflow: hidden
width: 100%
height: 200px
min-height: 200px
}
that.updatePosition(keyboardHeight)
that.editorCtx.scrollIntoView()
在插入目标文字时,将值设为\n',可以实现换行
this.editorCtx.insertText({ text: '\n' })
参考:请问editor组件控制拉起键盘 *** 作支持吗?
https://developers.weixin.qq.com/community/develop/doc/0006eeb6ae8cf0e7f3293e13f56400?highLine=editor%25E6%2598%25BE%25E7%25A4%25BA%25E9%2594%25AE%25E7%259B%2598
小程序技术专员-sanford 2019-09-20
不支持的。iOS无法通过接口拉起键盘,必须用户点击;安卓则可以。所以,终究是不一致,不行。。
该组件主要为微信editor组件的api调用集成封装,因此受到的限制同文档描述一致,即编辑器内支持部分 HTML 标签和内联样式,不支持class和id,支持的标签详见: https://developers.weixin.qq.com/miniprogram/dev/component/editor.html 。
不满足的标签会被忽略,<div>会被转行为<p>储存。
这也是为什么在做富文本解析时,仅仅用rich-text组件无法有效还原html内容,在解析内容的时候就需要将内容中的HTML标签转换成微信小程序所支持的标签。因此最好方式是引入市场封装好的富文本解析插件去解析html。
所以,开发者需要自行权衡在做富文本编辑开发时,是否使用微信自带的editor组件,或者参考腾讯文档小程序采用webview内嵌网页等方式去渲染。
小程序富文本编辑器editor初体验:( https://www.jianshu.com/p/a932639ba7a6 )
如果是微信原生开发,将demo组件中的相关dom元素标签和api换成微信原生即可。
也许你迷茫,但是我想说,在你迷茫的同时,保持本心,过好今天就好。在微信小程序中,组件 text 用来显示文本,基本使用代码如下:
测试使用
1 基本样式设置
基本使用还是比较简单的,下面咱们来论述一下文本样式的设置,首先是给他设置一个 class
测试使用
然后在对应的 wxss 文件中编写样式,对于字体来说 常用的就是字体大小、颜色、粗细的配置
.text { /* 字体大小 */ font-size: 20px/* 字体颜色 */ color: red/* 字体风格-粗细 */ font-weight: bold}
font-weight:设置文本字体的粗细。取值范围为100-900,取值:mormal:正常大小相当于400。bold :粗体,相当于700
2 边框设置
border-width:设置边框宽度:常用取值:medium:默认值,相当于3px。thin:1px。thick:5px。不可以为负值。
border-color:设置边框颜色。
border-top:设置顶部边框。
border-top-width,border-top-style,border-top-color 分别设置 宽度,样式以及颜色
border-right:设置右边框。
border-bottom:设置底边框。
border-left:设置左边框
border-radius:设置对象使用圆角边框。取值为数字或者百分比。
border-style(边框样式)常见样式有: (border-color,border-width) 边框相关设置
dashed(虚线)| dotted(点线)| solid(实线)。
.text { /* 字体大小 */ font-size: 20px/* 字体颜色 */ color: red/* 字体风格-粗细 */ font-weight: boldborder-color: blueborder-width:3pxborder-style: solid}
例如还可以设置一下边框圆角以及内外边距
.text { /* 字体大小 */ font-size: 20px/* 字体颜色 */ color: red/* 字体风格-粗细 */ font-weight: boldborder-color: blueborder-width:3pxborder-style: solid/* 内边距 */ padding: 10px/* 外边距 */ margin: 10px /* 设置边框圆角 从左向右 */ /* 左上角 右上角 右下角 左下角 */ border-radius: 2px 4px 10px 20px}
3 设置斜体
通过font-style来设置,取值:normal 正常的字体, italic 斜体字, oblique 倾斜的字体。
.text2{/*文字排版--斜体*/font-style:italic}
4 设置下划线/*下划线*/text-decoration:underline/*删除线*/text-decoration:line-through
5 长文本段落的排版.text2 { /*段落排版--首字缩进*/ text-indent: 2em/*段落排版--行间距(行高)*/ line-height: 1.5em/*段落排版--中文字间距*/ letter-spacing: 1px/*字母间距*/ word-spacing: 4px/*文字对齐 right 、left 、center */ text-align: left}
<p :class="item.isMore == true ? 'richText' : 'minH'" v-if="isShow"
v-html="contentConv(item.storyContent)">
</p>
直接在css中加max-width:100%height:auto。没有生效
方式一:在style中追加 max-width:100%height:auto,此方法优点灵活,对于content中所有图片都起作用
// 文章html正则追加max-width
contentConv(content) {
return content.replace(/<(img).*?(\/>|<\/img>)/g, function(mats) {
if (mats.indexOf('style') <0) {
return mats.replace(/<\s*img/, '<img style="max-width:100%height:auto"')
} else {
return mats.replace(/style=("|')/, 'style=$1max-width:100%height:auto')
}
})
},
方式二:此方法会破坏图片设置的样式,再设置style="max-width:100%height:auto"
contentConv(content) {
return content.replace(/<img[^>]*>/gi, function (match, capture) {
return match.replace(/style\s*?=\s*?([‘"])[\s\S]*?\1/ig, 'style="max-width:100%height:auto"') // 替换style
})
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)