You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
如果组件是一个video组件 <video src="xxxx"></video>,在编辑器双击组件,到组件预览,会发现video有两个音源在播放。 To Reproduce
举个例子 可以随便找一个有video的页面,选中video标签,然后在控制台执行$0.cloneNode(true),浏览器就会在后台再一次加载这个video,此时就会有两个视频在播放,一个是文档内的,另外一个不在文档内,但是仍然在播放。
Describe the bug
如果组件是一个video组件
<video src="xxxx"></video>
,在编辑器双击组件,到组件预览,会发现video有两个音源在播放。To Reproduce
举个例子 可以随便找一个有video的页面,选中video标签,然后在控制台执行$0.cloneNode(true),浏览器就会在后台再一次加载这个video,此时就会有两个视频在播放,一个是文档内的,另外一个不在文档内,但是仍然在播放。
因为组件预览是直接使用cloneNode实现的,这里我觉得可以考虑一下,从数据层面入手,通过数据的改变来驱动dom。
The text was updated successfully, but these errors were encountered: