我正在使用离子2.我想跟踪离子2 app.component.ts
文件中发生的每个错误。是否有任何解决方案?
提前致谢
答案 0 :(得分:1)
你需要使用IonicErrorHandler类。这是一个全局错误处理程序。
IonicErrorHandler拦截默认的Console错误处理 并在使用Ionic的Dev Build时将运行时错误显示为叠加层 服务器
app.module.ts
throw new Error('Im error')
现在,如果您只在应用程序的任何位置执行pip install -U scikit-learn
,您将看到控制台消息。
以下是custom error handling的一篇很棒的文章。