getFeedsByTheme(theme:any):Promise<any> {
console.log("theme",theme);
const ref =
firebase.database().ref('dailyfeeds').orderByChild('theme').equalTo(theme);
我想从Firebase数据库检索数据。下面是我的数据库结构,我想检索与特定给定主题匹配的数据。我该如何实现?
现在我正在做这样的事情:
const ref = firebase.database().ref('dailyfeeds').orderByChild('theme').equalTo(theme);