极星123
极星123
  • 发布:2021-03-21 22:34
  • 更新:2021-03-21 22:34
  • 阅读:1144

富文本插件 腾讯视频配置问题

分类:uni-app

作者好,如果是在uniapp插件市场引入,但是因为富文本中含有腾讯视频

<iframe src="https://v.qq.com/txp/iframe/player.html?vid=xxxxxx" allowFullScreen="true"></iframe>
  1. 在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>'  
 }  
}  
}

步骤是否有误或者缺漏的

但是发现微信小程序这边报错了

2021-03-21 22:34 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复