作者好,如果是在uniapp插件市场引入,但是因为富文本中含有腾讯视频
<iframe src="https://v.qq.com/txp/iframe/player.html?vid=xxxxxx" allowFullScreen="true"></iframe>
- 在pages.josn文件相关页面配置
"usingComponents": { // #ifdef MP-WEIXIN "txv-video": "plugin://tencentvideo/video" // #endif }
2.manifest.json
"mp-weixin" : {
"plugins": {
"tencentvideo": {
"version": "1.2.4",
"provider": "wxa75efa648b60994b"
}
}
},
3.在mp-html.vue设置
const plugins=[
'txv-video' // 使用腾讯视频
]
4.页面
<mp-html :content="html" ></mp-html>
import mpHtml from '@/components/mp-html/mp-html.vue'
export default {
components: {
mpHtml
},
data() {
return {
html: '<p style="text-align: center;"><iframe frameborder="0" src="https://v.qq.com/txp/iframe/player.html?vid=s3152lwqe33" allowfullscreen="true"></iframe></p>'
}
}
}
步骤是否有误或者缺漏的
但是发现微信小程序这边报错了
0 个回复