python – Google App Engine中模型的默认值

前端之家收集整理的这篇文章主要介绍了python – Google App Engine中模型的默认值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以为模型设置默认值?例如,从Appengine Documentation中考虑此模型
from google.appengine.ext import db

class Pet(db.Model):
    name = db.StringProperty(required=True)
    type = db.StringProperty(required=True,choices=set(["cat","dog","bird"]))
    birthdate = db.DateProperty()
    weight_in_pounds = db.IntegerProperty()
    spayed_or_neutered = db.BooleanProperty()
    owner = db.UserProperty(required=True)

我想将name的默认值设置为“Unnamed Pet”,因此如果用户不提供,则采用默认值.这可能吗?

PS:我希望这可以在模型类Pet本身中完成

解决方法

使用默认属性,例如
class Pet(db.Model):
    name = db.StringProperty(required=True,default="(unnamed)")
原文链接:https://www.f2er.com/python/185825.html

猜你在找的Python相关文章