Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am facing a strange problem while inserting an additional property under an entity key.

enter image description here

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
294 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...