davince
davince
> If anything this would be a bug in ffmpeg, since it provides the support code that interfaces with Mediacodec. However I have never seen this bug on my phone...
> codesandbox链接打不开,没有复现你说的问题,检查下看是不是自动向后加载了,你的代码会自动往后加载数据。 codesandbox链接 现在可以打开了,之前忘了权限。 这个代码是在调用 getBars 的时候自动加载,getBars 是库发起调用的,正常是通过网络请求拿数据,这代码是随机生成数据立即返回。 这段代码本意是按需往后加载数据,如果我没理解错的话,`backward: true` 表示后面还有数据,但不一定立即触发加载,正常是等到再次拖动到边界才会触发加载,问题是一次 callback 之后自动跳到边界,然后立即触发下一次 getBars 了,然后再次callback,再次触发 getBars ,短时间内多次循环,直到你松开鼠标为止。 我在PC端和手机端chrome上都复现了,这个是手机上录的视频。 https://github.com/user-attachments/assets/bf43ffd2-fe17-403d-9046-737146a174f2
I am now faced with refactoring a lot of code - I cannot mark getter/setter methods as observable or action, mobx does not allow it - I need to monitor...
Maybe I mistyped the tag, this is not a bug, but this result is unexpected, I expected to modify a field and read it to see the modified value. ```...
> Sorry I have a little trouble following the full context and setup through multiple messages and without having all the code. Would you mind creating the reproduction in a...
> The example looks contrived. You're reading from a computed observable (this.source) before setting it, thus making MobX queuing reactions or caching the value. MobX tries to ensure consistency by...