而不是单个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?

最佳答案

是,使用重复属性:
具有repeated=true的任何属性都将成为重复属性。这个
属性采用基础类型的值列表,而不是
单一值。例如,使用
integerproperty(repeated=true)是整数列表。
查看文档:Repeated Properties

关于python - ndb有一个列表属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11895710/

10-12 16:46