ant-design/components/alert/demo/error-boundary.md

44 lines
868 B
Markdown
Raw Normal View History

---
order: 8
title:
zh-CN: React 错误处理
en-US: ErrorBoundary
---
## zh-CN
友好的 [React 错误处理](https://reactjs.org/blog/2017/07/26/error-handling-in-react-16.html) 包裹组件。
## en-US
ErrorBoundary Component for making error handling easier in [React](https://reactjs.org/blog/2017/07/26/error-handling-in-react-16.html).
2020-01-21 16:21:37 +08:00
```tsx
2020-01-22 12:11:49 +08:00
import React, { useState } from 'react';
import { Button, Alert } from 'antd';
const { ErrorBoundary } = Alert;
2020-01-21 17:14:58 +08:00
const ThrowError: React.FC = () => {
2020-01-22 12:11:49 +08:00
const [error, setError] = useState<Error>();
2020-01-21 16:21:37 +08:00
const onClick = () => {
setError(new Error('An Uncaught Error'));
};
2020-01-21 16:21:37 +08:00
if (error) {
throw error;
}
2020-01-21 16:21:37 +08:00
return (
<Button danger onClick={onClick}>
2020-01-21 16:21:37 +08:00
Click me to throw a error
</Button>
);
};
ReactDOM.render(
<ErrorBoundary>
<ThrowError />
</ErrorBoundary>,
mountNode,
);
```