如何显示所有数据

发布于 2025-01-11 17:49:03 字数 521 浏览 0 评论 0原文

您好,我需要帮助来显示所有特定数据。我的代码在下面,

const [server, setServer] = useState()

const getServer = useCallback(async () => {
   // const id = what do I do here?? 
   
    const unsubscribe = firebase.db.collection("servers").doc('S7FlCYEvxIVDs7MRymnK').onSnapshot(snapshot => {
        setServer(snapshot.data())
    })
    return unsubscribe
},[props.server])

useEffect(() => {
    getServer()
}, [props])

console.log(server)

您可以看到我想用 id 变量替换硬编码的文档信息,因此在我的项目中我可以显示多个服务器,而不是我选择的硬编码服务器。

Hello I need help with showing all of a certain piece of data. my code is below

const [server, setServer] = useState()

const getServer = useCallback(async () => {
   // const id = what do I do here?? 
   
    const unsubscribe = firebase.db.collection("servers").doc('S7FlCYEvxIVDs7MRymnK').onSnapshot(snapshot => {
        setServer(snapshot.data())
    })
    return unsubscribe
},[props.server])

useEffect(() => {
    getServer()
}, [props])

console.log(server)

you can see I want to replace the hard coded doc info with an id variable, so in my project I can show multiple servers instead of a hard coded one I choose.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文