我正在进行一个查询,以检索我的当前用户的信息,查询工作完美,但我收到的数据有很多信息。
我只想获取用户信息所在的对象。这是我的疑问:
export const GetUserDB = async (userId) => { const response = await db .collection('users') .where("id", "==", userId) return response.get(); }
kgsdhlau1#
让我知道它是否适合你。
export const GetUserDB = async (userId) => { const response = await db .collection('users') .where("id", "==", userId) .get() const usersArray = response.docs.map(each => each.data()) return usersArray[0] // returning the first document from the array }
1条答案
按热度按时间kgsdhlau1#
让我知道它是否适合你。