如何检查JSON响应是否为空?
GetEmpName(){
this.Emp.empservicecall()
.subscribe(response => {
console.log(response);
this.name = response[0].name
});
}
答案 0 :(得分:1)
您可以通过以下方式检查它是否具有值
if(response && response.length > 0)
为了解决编译时错误,您需要为响应定义一个类型,使其为任意类型
this.Emp.empservicecall()
.subscribe((response : any) => {