如何在prod.env中的componentDidCatch()中获取错误Source(URL)

时间:2019-06-04 10:03:36

标签: reactjs

我正在使用 componentDidCatch()来在React组件出现错误时捕获错误,我想使用错误的.map文件将此错误报告给我的服务器,但是如何获取来自 componentDidCatch()的错误源

1 个答案:

答案 0 :(得分:0)

componentDidCatch接受两个参数(error, errorInfo)

因此,只需在声明函数时将其添加为参数,就可以访问它。

componentDidCatch(error, errorInfo) { //do something with error }