image - first column its button with value which i need to paste in parametre。
当我单击按钮时,我尝试从数据库中获取有关文档的其余信息!但是在控制台中,我得到了整个文档列表!我需要将文档的ID从表的第一列发送到“ equalTo()'”,以获取特定文档的数据
firebase.database().ref("recommendations")
.orderByChild("ID")
.equalTo()
.on("child_added", function(snapshot) {
console.log(snapshot.val());
});