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

python – Google App Engine中模型的默认值,第1张

概述是否可以为模型设置默认值?例如,从Appengine Documentation中考虑此模型 from google.appengine.ext import dbclass Pet(db.Model): name = db.StringProperty(required=True) type = db.StringProperty(required=True, choices 是否可以为模型设置默认值?例如,从Appengine documentation中考虑此模型
from Google.appengine.ext import dbclass 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)")
总结

以上是内存溢出为你收集整理的python – Google App Engine中模型的默认值全部内容,希望文章能够帮你解决python – Google App Engine中模型的默认值所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1207258.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存