我正在使用一个函数来检查集合中文档中的值(值)是否与字符串数组(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:[对象对象],[对象对象],[对象对象]
我应该怎么做才能以字符串格式返回值?
您是否尝试过JSON.stringfy(res); ?