I am facing a strange problem while inserting an additional property under an entity key.
I am trying to add one more property without modifying the existing, however, my below code creates the new property and it deletes the existing Data(Display blank)
As per GCP Doc, I have tried with Insert and upsert not issue not got fixed
server.post('/submit', (req, res,) => {
const OutTime = new Date();
const key = datastore.key([VData, 5717023518621696])
const entity = {
key:key,
method: 'insert',
data: { content: OutTime },
}
datastore.insert(entity).then(() => {
// Task inserted successfully.
});
// [END datastore_upsert]
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…