Simpan saja komentar seperti yang Anda inginkan terwakili di blog Anda. Anda ingin komentar berulir/bersarang? Kemudian simpan dengan cara bersarang:
postId: {
comments: [
{
id: "47cc67093475061e3d95369d" // ObjectId
title: "Title of comment",
body: "Comment body",
timestamp: 123456789,
author: "authorIdentifier",
upVotes: 11,
downVotes: 2,
comments: [
{
id: "58ab67093475061e3d95a684"
title: "Nested comment",
body: "Hello, this is a nested/threaded comment",
timestamp: 123456789,
author: "authorIdentifier",
upVotes: 11,
downVotes: 2,
comments: [
// More nested comments
]
}
]
},
{
// Another top-level comment
}
]
}
postId
mengacu pada entri blog yang berisi komentar dan telah digunakan sebagai kunci (atau _id
di MongoDB) dari dokumen. Setiap komentar memiliki id
yang unik , untuk memilih atau mengomentari komentar individu.
Untuk mendapatkan suara yang dikumpulkan, Anda harus menulis fungsi pengurangan peta di suatu tempat di sepanjang baris ini:
function map() {
mapRecursive(this.comments)
}
function mapRecursive(comments) {
comments.forEach(
function (c) {
emit(comment.author, { upVotes: c.upVotes, downVotes: c.downVotes });
mapRecursive(c.comments);
}
);
}
function reduce(key, values) {
var upVotes = 0;
var downVotes = 0;
values.forEach(
function(votes) {
upVotes += votes.upVotes;
downVotes += votes.downVotes;
}
);
return { upVotes: upVotes, downVotes: downVotes };
}
Saya belum menguji fungsi-fungsi ini dan mereka tidak memeriksa null
nilai-nilai baik. Terserah kamu :)