gpt4 book ai didi

javascript - 如何在 VueJS 中读取 Firebase 数据?

转载 作者:行者123 更新时间:2023-12-03 00:51:02 24 4
gpt4 key购买 nike

我遵循了 Firebase、Vue.js 和 VueFire 的教程,但遇到了很多麻烦。数据库是实时数据库,而不是 Firestore,当我尝试查看数据集合时,我得到的所有返回要么是“未定义”,要么是带有一堆我无法理解的垃圾的对象(当我期望 json 时) 。数据库规则配置为可读取。我做错了什么?

import Firebase from "firebase";

// firebase init goes here
let config = {
apiKey: "removed",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: ""
};

let app = Firebase.initializeApp(config);
let db = app.database();
let postsRef = db.ref("posts");

//postsRef returns undefined. Why?!?!?

或者有这个...我该怎么办:

Reference {repo: Repo, path: Path, queryParams_: QueryParams, orderByCalled_: false}
database: Database
key: "posts"
orderByCalled_: false
parent: Reference
path: Path {pieces_: Array(1), pieceNum_: 0}
queryParams_: QueryParams {limitSet_: false, startSet_: false, startNameSet_: false, endSet_: false, endNameSet_: false, …}
ref: Reference
repo: Repo {repoInfo_: RepoInfo, app: FirebaseAppImpl, dataUpdateCount: 0, statsListener_: null, eventQueue_: EventQueue, …}
root: Reference
__proto__: Query

最佳答案

postsRef 返回对查询位置的引用。您可以使用该引用的方法来提取正确的数据。

检查firebase api,那里有一些示例:https://firebase.google.com/docs/reference/js/firebase.database.Reference#key

您可能想尝试 postsRef.toJSON() 来获取所需的 JSON 对象。

关于javascript - 如何在 VueJS 中读取 Firebase 数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53042048/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com