有一个具有以下属性的模型:
userEmailList = ndb.StringProperty(repeated=True)
从一个功能保存数据。每当将新电子邮件添加到 userEmailList 时,都会提取整个列表属性。
if useremail not in thd.userEmailList: #thd is kind object
thd.userEmailList.append(useremail)
thd.put()
time.sleep(0.5)
某些用户未添加到列表中。如何解决随机电子邮件的问题。由于我们为put()添加了延迟,但问题仍然存在。