DOMException The play request was interrupted by a call to pause
This error message typically occurs when you try to call the play() method on a media element (such as an audio or video player) that has already been paused or stopped.
In other words, the play() method was called, but before the media could start playing, another function or event handler called the pause() method on the same media element. This interrupts the play() request and triggers the DOMException error.
To resolve this issue, you should ensure that the media element is in a valid state before calling the play() method. Check that the element is not already paused or stopped, and that any other functions or event handlers that could interfere with the play() request are properly synchronized.
原文地址: https://www.cveoy.top/t/topic/bDNl 著作权归作者所有。请勿转载和采集!