fullDocument
watch
のoptions(second)引数のパラメータ メソッドを使用して、update
のドキュメントへの変更を説明するデルタを取得できます。 操作:
const thoughtChangeStream = connection.collection("phonenumbers").watch([], {
fullDocument: 'updateLookup'
});
thoughtChangeStream.on("change", (change) => {
io.of("/api/socket").emit("newThought", change);
});
これにより、updateDescription
のような応答ドキュメントが返されます。 更新によって変更されたフィールドが含まれています:
{
_id: {
_data: '8260931772000000012B022C0100296E5A1004ABFC09CB5798444C8126B1DBABB9859946645F696400646082EA7F05B619F0D586DA440004'
},
operationType: 'update',
clusterTime: Timestamp { _bsontype: 'Timestamp', low_: 1, high_: 1620252530 },
ns: { db: 'yourDatabase', coll: 'yourCollection' },
documentKey: { _id: 6082ea7f05b619f0d586da44 },
updateDescription: {
updatedFields: { updatedField: 'newValue' },
removedFields: []
}
}
注:これはupdate
でのみ機能します 操作であり、replace
では機能しません 、delete
、insert
、など。
関連項目:
- http://mongodb.github.io/ node-mongodb-native / 3.0 / api / Collection.html 。
- https://docs.mongodb.com/manual/reference/change -イベント/