【发布时间】:2019-11-25 17:29:08
【问题描述】:
在我的项目中(.net core 2.2 + angular 8)。为了显示一个错误 HttpInterceptor 它工作得很好, 但对于多条消息,它也可以工作,但没有显示正确的错误消息。 我得到了类似的东西:
[object Object] One or more validation errors occurred. 400 0HLRCTBS664E8:00000002
我的拦截器看起来像:
@Injectable()
export class ErrorInterceptor implements HttpInterceptor {
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(req).pipe(
catchError(error => {
if (error instanceof HttpErrorResponse) {
if (error.status === 401) {
return throwError(error.statusText);
}
const applicationError = error.headers.get('Application-Error');
if (applicationError) {
console.error(applicationError);
return throwError(applicationError);
}
const serverError = error.error;
let modalStateErrors = '';
if (serverError && typeof serverError === 'object') {
for (const key in serverError) {
if (serverError[key]) {
modalStateErrors += serverError[key] + '\n';
}
}
}
return throwError(modalStateErrors || serverError || 'Server Error');
}
})
)
}
}
export const ErrorInterceptorProvide = {
provide: HTTP_INTERCEPTORS,
useClass: ErrorInterceptor,
multi: true
}
我使用的 dto 类:
[Required(ErrorMessage = "username is required")]
public string Username { get; set; }
[Required(ErrorMessage = "password is required")]
[StringLength(20, MinimumLength = 6, ErrorMessage = "Password should be between 6 and 20
characters")]
public string Password { get; set; }
我的 Startup 类如下所示:
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler(builder =>
{
builder.Run(async context =>
{
context.Response.StatusCode = (int) HttpStatusCode.InternalServerError;
var error = context.Features.Get<IExceptionHandlerFeature>();
if (error != null)
{
context.Response.AddApplicationError(error.Error.Message);
await context.Response.WriteAsync(error.Error.Message);
}
});
});
}
app.UseCors(x => x.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader());
app.UseAuthentication();
app.UseMvc();
}
}
应用错误扩展方法:
public static class Extensions
{
public static void AddApplicationError(this HttpResponse response, string message)
{
response.Headers.Add("Application-Error", message);
response.Headers.Add("Access-Control-Expose-Headers", "Application-Error");
response.Headers.Add("Access-Control-Allow-Origin", "*");
}
}
【问题讨论】:
标签: c# angular http asp.net-core