由于要引入一个比较大的第三方插件,所以必须将这个插件在分包中单独使用,要使用这个插件里的自定义组件,在app.json文件中usingComponents
节点全局引入的话可以有用,但是在一进入小程序主包时,因为插件是在分包引入的,会报WASubContext.js?t=wechat&s=1669943103098&v=2.25.4:1 Component is not found in path "plugin://wx9e8fbc98ceac2628/p2p-player"错误。尝试把usingComponents节点移到subPackages
分包节点下面,不起作用。这个正确的写法应该是怎么样的?
"usingComponents": {
"p2p-player":"plugin://wechat-p2p-player/p2p-player",
"p2p-pusher":"plugin://wechat-p2p-player/p2p-pusher"
},
插件的引入标签是:plugins