xiechengxun

Results 7 comments of xiechengxun

就利用项目的那个demo页面就可以复现,加个下边距让页面可以上下滚动,然后就会发现,鼠标拖动光标画画,但是在画板上实际绘制出来的轨迹会出现在光标的上方。

看了下代码,原来是canvas.getBoundingClientRect()获取画布相对于视窗位置用的是一个常量缓存的。如下这样改draw.js的70、71行就可以了: `point.x = e.clientX - canvas.getBoundingClientRect().left;` `point.y = e.clientY - canvas.getBoundingClientRect().top;`

is grpc supported es6?

可以试试这个解决办法,找到 **ProjectBuilder.js** 这个文件,搜索关键字 **function findOutputFiles** ,将59行至62行代码修改为: ``` let files = glob.sync(`**/${buildType}/*.${bundleType}`, { absolute: true, cwd: this[`${bundleType}Dir`] }).map(path.normalize); ```

更新为最新版,修改一下浏览器设置的默认语言就好了

特别好用,再也不用纠结各种莫名其妙的网络问题了