以下のコードだとエラーが出ます
secondDb.collection("chats").doc(dockey). onSnapshot(function (doc) { doc.docChanges().forEach(function(change){ if (change.type === "added") { console.log(doc.data().messages[0]); } else if (change.type === "modified") { // } else if (change.type === "removed") { // } }) });
エラー内容は以下の通りです
TypeError:doc.docChange is not a function
あなたの回答
tips
プレビュー