Update one property of an entity in google cloud d

2019-07-13 05:31发布

How do I update only one property of an entity in the google cloud datastore, without remove all other properties?

key = client.key('employee', ID)
employee_to_deactivate = datastore.Entity(key)
employee_to_deactivate.update({
    'active':False,
})

this updates the active property to False, but removes all the other properties.

2条回答
Emotional °昔
2楼-- · 2019-07-13 06:31

You cannot update specific properties of an entity. All writes (inserts, updates) must include all properties that should be persisted. Whenever you need to do an update, you need to first retrieve the existing entity as a whole, then update one or more properties by setting new values and update the entity.

查看更多
姐就是有狂的资本
3楼-- · 2019-07-13 06:36

As mentioned in previous answer, you need to set values to every property you want to keep when updating your entity.

One way to re-use your previous property values when updating a single property, is to iterate over the entity. When using the example code from the datastore documentation, this would look as follows:

with client.transaction():
    key = client.key('Task', 'sample_task')
    task = client.get(key)

    # iterate through the entity to take over all existing property values
    for prop in task:
            task[prop] = task[prop]

    task['done'] = True

    client.put(task)
查看更多
登录 后发表回答