Stephen
Stephen
几个月以来我都是用的下面这套配置,包括最近的`ts`版本,调试体验良好。 也试过最新的官方推荐配置和`Auto Attach` 方式,都不太好用。本着有保底的办法、外加偷懒的心态,也就没深究了😅。 这个配置其实就是之前某个版本的eggjs vscode插件的配置写法,有需要的同学可以参考一下,希望有帮助。 ```json { "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Egg Debug", "runtimeExecutable": "npm", "runtimeArgs": [ "run", "debug" ], "console": "integratedTerminal", "restart":...
去看看`_dragStart`函数以及是谁在调用它的就知道了
在drag事件中判断是否超出边界,超出时主动触发mouseup事件,中断鼠标的拖拽。 ```js e.target.__zr.handler.dispatchToElement({target: e.target}, 'mouseup', e.event) ```
Hi, I also have the problem. I made a test that I read a local picture instead of ffmpeg stream to send to the browser , then, it works. So,...