如何检查集合在打字稿中是否有价值

时间:2018-07-09 17:00:59

标签: angular typescript

我想检查一个集合是否有价值,我喜欢下面的内容及其工作方式。请建议我们是否有更好的方法...

我正在检查data是否为[],然后什么也不做,否则做点什么

let data = await this.http.post(_postsURL, {
  headers: this.getPostAPIHeader()
}).toPromise();
if (data[0]) {
  console.log("response yes ");
} else {
  console.log("response no ");
}

1 个答案:

答案 0 :(得分:0)

尝试以下方法:

if (data.length===0 || !date) {
  console.log("response yes ");
} else {
  console.log("response no ");
}