因此chrome具有此功能
https://developers.google.com/web/tools/chrome-devtools/javascript/breakpoints#function
,它使您可以在函数上调用debug(fn)
,并在该函数的第一行暂停。
但是在代码中使用时(不在控制台中),您会收到此错误
(index):38 Uncaught ReferenceError: debug is not defined
at window.onload ((index):38)
https://jsfiddle.net/sxback6v/
如何解决此问题(除了使用调试器添加闭包外)?我正在寻找一种使用本机debug
函数的方法,而不会引起浏览器的抱怨。