波比小金刚

Results 129 comments of 波比小金刚

@mikeyreilin 可以提供复现的 demo 吗?

嗯~ input 的事件监听没有正确的 `uninstall`,提交了 pr。[pr](https://github.com/oct16/TimeCat/pull/103/files) @FlyingBig

> canvas的uninstall也存在同样的问题。 canvas的context监听错了 ok~,我康康

@FlyingBig 好的,我康康,PS: 你是在你们公司的产品上用吗?深度用户啊~👍

@FlyingBig ,另外,这两种情况,可以提供一个可复现的 DEMO 吗?😂

> @cbbfcd https://codesandbox.io/s/beautiful-kare-1qf74?file=/src/App.vue canvas相关问题。 > 至于字体问题,我没有找到在线的pdf含有中文字体文件。就木有提供demo。 @FlyingBig 👍,多提反馈啊 字体问题是 `String.fromCharCode` 在 `ArrayBuffer` 很大的时候会爆栈,我提了一个 [`PR`](https://github.com/oct16/TimeCat/pull/106/files) 通过切片的方式来转字符串 `canvas` 那个应该也修了 等合了,新版本你再试试

@iamgaohui IndexedDB 采用的是结构化克隆算法,不支持 Function 存储。见[这里](https://developer.mozilla.org/zh-CN/docs/Web/Guide/API/DOM/The_structured_clone_algorithm) 然后根据错误信息,应该是去 add 了一段 canvas 的代码,其实是 ctx.save 的源代码: ```js ctx.save = function ctxSave() { var old = this._transformMatrix; this._transformStack.push(old); this._transformMatrix = old.slice(0, 6); this._originalSave(); }; ```...