- a.replace(/,/g,";") 'a.replace' is undefined一直报错?
MiniProgramError a.replace is not a function. (In 'a.replace(/,/g,";")', 'a.replace' is undefined) TypeError: a.replace is not a function. (In 'a.replace(/,/g,";")', 'a.replace' is undefined) @https://lib/WAServiceMainContext.js:1:668374 at <setTimeout callback function> @https://lib/WAServiceMainContext.js:1:154507 _onNativeTimer@ global code@ 我用 Taro 开发的小程序,一直报这个错,但是代码里面根本没有这段 .replace(/,/g,";") 代码,看了打包后的代码也没有。不知道从哪查起,万能的社区能不能给点思路,非常感谢🙏
07-17 - 直播获取卡片参数示例代码中 pluginScene 是什么?
直播获取卡片参数示例代码中 pluginScene 是什么?从非卡片进入会报错 pluginScene is not defined
2020-08-24 - pluginScene 从哪里来的?没找着
[图片] // 分享卡片入口场景才调用getShareParams接口获取以下参数 if (options.scene == 1007 || options.scene == 1008 || options.scene == 1044 || pluginScene === 1154 || pluginScene === 1155) { livePlayer.getShareParams() .then(res => { // 房间号 console.log('get room id', res.room_id) // 用户openid console.log('get openid', res.openid) // 分享者openid,分享卡片进入场景才有 console.log('get share openid', res.share_openid) // 开发者在跳转进入直播间页面时,页面路径上携带的自定义参数,这里传回给开发者 console.log('get custom params', res.custom_params) }).catch(err => { console.log('get share params', err) }) }
2020-08-17