- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究 Spring Boot + Angular 集成,我想知道如何在我的 Angular 应用程序中显示异常消息。我在 Spring Boot 中创建了异常处理程序类,如下所示:
@ControllerAdvice
public class ExceptionController {
@ExceptionHandler(value={CommonException.class})
public ResponseEntity<Object> noResult(CommonException e){
HttpStatus status=HttpStatus.BAD_REQUEST;
return new ResponseEntity<Object>(new CustomExceptionPayload(e.getMessage(),"400"), status);
}
}
在 Angular 方面,我使用 httpclient 通过服务类发送请求,如下所示:
public generatFile(file:any,to:string,from:string,proj_name:string,count:string,env:string,event:string){
console.log("in service");
const formData=new FormData();
formData.append('file',file);
formData.append('to',to);
formData.append('from',from);
formData.append('proj_name',proj_name);
formData.append('event',event);
formData.append('env',env);
formData.append('count',count);
return this.http.post(this.baseUrl+'/events',formData,{
observe: 'response',
responseType: 'blob' as 'json'
}
);
}
在我的主要组件中接收如下响应:
this.service.generatFile(this.file,new Date(this.to).toLocaleDateString(),new Date(this.from).toLocaleDateString(),this.proj_name,this.count,this.env,this.event).subscribe((resp: any) => {
const blob = new Blob([resp.body], { type: resp.headers.get('Content-Type') });
saveAs(blob, this.fileName);
this.loading=false;
},((error:any) =>{
this.message=error.message;
this.loading=false;
}
我在 Angular 中使用 error.message 来获取上面给出的错误消息,但它不起作用。
当我使用 postman 时,我得到以下响应:
{
"message": "number of events per file is greater than number of failed events",
"status": "400"
}
我不知道如何在 Angular 中获得与我从 Spring Boot 发送的相同的错误消息。如果有人可以用代码提供答案,我将不胜感激。
最佳答案
您可以使用可观察的错误对象。
this.service.generatFile().subscribe(
(res) => {
// handle response
}, (err) => {
// handle errors
});
关于java - 如何在 Angular 应用程序上显示来自 springboot 的异常消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61255340/
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 Improve th
所以我正在开发一个黑 jack 程序,但我有点卡住了。我会警告大家,我对编程真的很陌生,而且,我正在项目中期......所以有一些松散的结局和未使用的变量,以及一些不必要的逻辑(用于测试),但这就是我
我正在尝试创建一个可用作 OpenGL 测试工具的示例程序。到目前为止,我的那个似乎可以工作,但似乎忽略了通过统一变量 MVPMatrix 传递的 MVP 矩阵。当我添加代码以读回制服并检查它是否确实
感谢您帮助我,这是有关我的代码的部分。 printf("Thank you, now please enter the logic gate"); scanf("%s", &C); if (C ==
public static void ejemplosString(String palabra){ char[] letras = palabra.toCharArray();
所以,我有一个 php 应用程序,通过 cgi 和 nginx 运行。我有一个 .jar 程序,用于在条形码打印机(Zebra)上打印条形码,猜猜看是什么!。 我的 php 应用程序使用 exec()
我遇到的唯一问题是 getAll() 方法,它似乎在 PersonnelController 类中的位置立即运行。我也曾在其他很多地方尝试过,但都没有成功。 setAll() 方法看起来不错,我已经测
我是一名优秀的程序员,十分优秀!