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.
将某些内容记录到控制台时是否会触发某些事件?我想获取所有日志并创建一个日志文件并将其发送到服务器进行调试。
我执行的 console.log() 命令很容易,但我也需要它来处理意外错误或警告。
如果您需要捕获实际错误,请使用类似这样的内容
window.addEventListener('error', onError) var errors = []; function onError(message){ errors.push(message); }
否则,micha的代码很棒