我想存储一个字符串列表,而不是单个 StringProperty()
class BlogPost(ndb.Model):
s1 = ndb.StringProperty(required=True)
s2 = ndb.StringProperty(required=True)
s3 = ndb.StringProperty(required=True)
我宁愿去
class BlogPost(ndb.Model):
my_strings = ndb.StringListProperty() # does this exist?