import { Component, type ReactNode } from 'react' import { Result, Button } from 'antd' interface Props { children: ReactNode } interface State { hasError: boolean error: Error | null } export class ErrorBoundary extends Component { constructor(props: Props) { super(props) this.state = { hasError: false, error: null } } static getDerivedStateFromError(error: Error): State { return { hasError: true, error } } componentDidCatch(error: Error, info: React.ErrorInfo) { console.error('[ErrorBoundary] Unhandled error:', error, info.componentStack) } private handleReload = () => { window.location.reload() } private handleReset = () => { this.setState({ hasError: false, error: null }) } render() { if (this.state.hasError) { return (
重试, , ]} />
) } return this.props.children } }