简体   繁体   中英

How to unset field from Python Eve application?

Is there a way to unset a field from document using Eve framework?

Like $ curl -X PATCH http://example.com/people/<id> -d '{"image": "$unset": 1}'

Eve doesn't have some built-in thing for this, but you can use Event hooks to handle resource update event, find out fields which should be replaced and replace them by yourself.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM