我遇到了一个奇怪的行为。看到这个小提琴。在使用 React 16 错误处理机制时,即错误边界,我注意到error
参数是空的。经过进一步调查,我意识到只有在抛出 Error 对象时才会出现这样的情况:
throw new Error('The world is very strange')
但是,当以这种方式抛出错误时:
throw 'The world is very strange'
该错误将在componentDidCatch
.
求各位大神赐教。我希望继续使用new Error
,因为建议使用它,它应该可以访问文件和抛出的行号。
让我们看一下代码。
class Boundary extends React.Component {
constructor() {
super();
this.state = {}
}
componentDidCatch(error, info) {
this.setState({
error,
info,
})
}
render() {
if (this.state.error) {
return (
<div>
{JSON.stringify(this.state)}
</div>)
}
return this.props.children;
}
}
class Component extends React.Component {
render() {
// Why and what should i do ?
throw 'This will be available in the error parameter'
throw new Error('This one will not')
}
}
class TodoApp extends React.Component {
constructor(props) {
super(props)
}
render() {
return (
<Boundary>
<div>
<Component />
</div>
</Boundary>
)
}
}