我是 Vue 和 Vuefire 的新手。我正在尝试使用密钥作为 URL ID 创建指向页面的动态链接。
我的参考设置为
let db = app.database();
const postsRef = db.ref('posts');
我正在将全局参考导入我的应用页面,就像这样 -
firebase: {
posts: {
source: postsRef,
asObject: true,
readyCallback: function () {
console.log(postsRef)
}
},
},
并像这样遍历帖子对象-
<div v-for="post in posts">
<a :href="'post/' + post.key"></a>
</div>
我的数据库的结构是这样的 - DB Structure
考虑到我可能想在帖子页面上检索,最好不使用 URL 参数,使用密钥的最佳方法是什么?当我记录postsRef 对象时,我看到父值为null,而键值为posts。我希望键值在 for 循环中检索元素的唯一 ID。