mingle
Results
3
issues of
mingle
` const transformWsUrl = (url, options, client) => { client.options.username = `token=${this.get_current_auth_token()}`; client.options.clientId = `${this.get_updated_clientId()}`; return `${this.get_signed_cloud_url(url)`; }` The lack of '}'
我在vue中,每当路由跳转,都会使用过渡动画。结果我发现,在某些情况下(未知是什么情况),会出现录制的页面在路由跳转后,页面呈现空白。后经过录制的dom元素查看,发现,dom节点的样式一直停留在opacity:0的状态,导致页面空白。事实上,我的过渡动画是opacity:100 =》 opacity:0 =〉opacity:100; 我不知道是什么原因导致的,我的问题是:1:在路由跳转后进行一次全量快照,是否能解决这个问题。2:导致这个问题的原因是什么。3:rrweb现在是否能主动触发全量快照的录制,目前我在文档上没找到主动触发的方法