如何检查Angular 4中的Json响应是否为空?

时间:2018-11-25 14:51:11

标签: json angular

如何检查JSON响应是否为空?

GetEmpName(){
  this.Emp.empservicecall()
    .subscribe(response => {
      console.log(response);
      this.name = response[0].name
    });
}

1 个答案:

答案 0 :(得分:1)

您可以通过以下方式检查它是否具有值

if(response && response.length > 0)

为了解决编译时错误,您需要为响应定义一个类型,使其为任意类型

 this.Emp.empservicecall()
    .subscribe((response : any) => {