目录
1. 首先用小程序原生的 rich-text 肯定是不行的,它video的HTML节点和属性都不支持的
2. 采用安装插件的方法去处理(强烈推荐:mp-html,可用于多端)
3. 引入
4. 使用
5. 效果
1. 首先用小程序原生的 rich-text 肯定是不行的,它video的HTML节点和属性都不支持的
2. 采用安装插件的方法去处理(强烈推荐:mp-html,可用于多端)
- 安装:
# 通过 npm 获取
npm install mp-html
# 或通过 yarn 获取
yarn add mp-html
- 需要升级时:
# 通过 npm 升级
npm update mp-html
# 或通过 yarn 升级
yarn upgrade mp-html
- git 方式
# 通过 github 获取
git clone https://github.com/jin-yufeng/mp-html.git
# 或通过 gitee 获取
git clone https://gitee.com/jin-yufeng/mp-html.git
3. 引入
1、本方法仅适用于微信、QQ 小程序
- 在小程序项目根目录下通过 npm 安装组件包
- 开发者工具中勾选 使用 npm 模块(若没有此选项则不需要)并点击 工具 - 构建 npm
- 在需要使用页面的 json 文件中添加
{
"usingComponents": {
"mp-html": "mp-html"
}
}
2、源码引入
- 本方法适用于所有平台
- 将 源码 中对应平台的代码包(dist/platform)拷贝到 components 目录下,更名为 mp-html
- 在需要使用页面的 json 文件中添加
{
"usingComponents": {
"mp-html": "/components/mp-html/index"
}
}
4. 使用
- 在需要使用页面的 wxml 文件中添加
<mp-html content="{{html}}" />
- 在需要使用页面的 js 文件中添加
Page({
onLoad () {
this.setData({
html: '<div>Hello World!</div>'
})
}
})
// 记得用正则给视频添加宽度
let info = '后台返回的数据'
info = info.replace(/<video/gi, '<video style="width:100%"')
.replace(/<section/g, '<div')
.replace(/\/section>/g, '\div>');
// 其次看你后台返回的视频是拼接了域名还是没有
5. 效果
文章来源:https://www.toymoban.com/news/detail-499844.html
插件地址:小程序富文本组件小程序富文本组件https://jin-yufeng.gitee.io/mp-html/#/overview/quickstart文章来源地址https://www.toymoban.com/news/detail-499844.html
到了这里,关于解决小程序富文本显示视频问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!