我想知道是否可以将方法添加到db.model的子类中。例如:
class Session(db.model):
sessionId = db.StringProperty()
# More Properties
def refreshSession(self):
#do some work
self.put()
实现:
s = Session()
s.refreshSession()
这是推荐的吗?
答案 0 :(得分:2)
这是向模型对象添加行为的典型方法。你为什么不这样做呢?