A-Frame 中的点击事件不会停止声音

Sound is not going to stop on click event in A-Frame

 <a-assets>
          <audio id="river" src="river.mp3" preload="auto">
          </audio>   
 </a-assets>   
 <a-entity sound="src: #river"></a-entity> 

var entity = document.querySelector('[sound]');
entity.components.sound.stopSound();

document.querySelector('audio').stop();有效还是entity.pause()