Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到此错误消息,不知道在哪里寻找。它在 firefox 18.02 firebug 上说它在:kinetic.min.js(第 1 行)版本 4.3.3
感谢您提前提供任何提示。
当您在画布上绘制某些东西时,您有一个未捕获的异常。
将您的 kinetic.min.js 更改为http://www.html5canvastutorials.com/libraries/kinetic-v4.3.3-beta.js仅用于调试,然后使用 try/catch 包装您的代码以捕获错误。
http://www.html5canvastutorials.com/libraries/kinetic-v4.3.3-beta.js
try { .... your code here .... } catch(err) { console.log(err); console.trace(); }