在Angular
文档(https://angular.io/api/common/http/HttpErrorResponse)中,HttpErrorResponse
假定包含错误。
问题1-我注意到,如果服务器发送json
,则error
属性包含该json
。是Angular
将body
复制到error
属性中?
问题2-文档还说The error property will contain either a wrapped Error object or the error response returned from the server.
是什么Error object
?它是在Angular中定义的某种类型吗?在我的代码中,我想打印error
属性,但不能。与服务器无关的错误。在这种情况下,我不知道error
的类型。