📜  如何 firebase.database().ref 在相同的唯一 id firebase 中推送唯一 id - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:04.849000             🧑  作者: Mango

代码示例1
const ref = Firebase.database().ref(`/posts`);
ref.push({ title, categories, content, timestamp})
   .then((snapshot) => {
     ref.child(snapshot.key).update({"id": snapshot.key})
   });