小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如下图所示,腾讯视频给出的文档中,自己实现了获取组件实例的接口。
let txvContext = TxvContext.getTxvContext('txv1') // txv1即播放器组件的playerid值
这个的实现逻辑是什么?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
这个问题放了好久,最近捡起来,已经搞定了。
在插件组件里面获取实例并缓存到公共数组里,外面可以通过插件暴露的api根据id获取这个实例。
//缓存实例attached:function(e) {api.attachedContext(this.id, this);},//销毁实例detached:function(e){api.detachedContext(this.id);}
//缓存实例
attached:function(e) {
api.attachedContext(this.id, this);
},
//销毁实例
detached:function(e){
api.detachedContext(this.id);
}
#暴露的api接口。
var instance = [];function getCustomeContext(id) {return instance[id];}function attachedContext(id, obj) {instance[id] = obj;}function detachedContext(id) {instance[id] = null;}module.exports = {attachedContext: attachedContext,detachedContext: detachedContext,getCustomeContext: getCustomeContext}
var instance = [];
function getCustomeContext(id) {
return instance[id];
function attachedContext(id, obj) {
instance[id] = obj;
function detachedContext(id) {
instance[id] = null;
module.exports = {
attachedContext: attachedContext,
detachedContext: detachedContext,
getCustomeContext: getCustomeContext
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
这个问题放了好久,最近捡起来,已经搞定了。
在插件组件里面获取实例并缓存到公共数组里,外面可以通过插件暴露的api根据id获取这个实例。
#暴露的api接口。