Ionic 4 Firebase Return

问题描述 投票:0回答:2

我正在使用一个函数来检查集合中文档中的值(值)是否与字符串数组(this.values)中的值相同,但是我无法在以下情况下返回此条件的真实值字符串格式。

Function(){

this.afs.collection('nameCollection',ref => ref.where('value',“ in”,this.values

))。snapshotChanges()。subscribe(res => {

if(res.length> 0

{

console.log(res.toString())//

}

});

}

结果

console.log:[对象对象],[对象对象],[对象对象]

我应该怎么做才能以字符串格式返回值?

firebase google-cloud-firestore ionic4
2个回答
0
投票

您是否尝试过JSON.stringfy(res); ?

© www.soinside.com 2019 - 2024. All rights reserved.