Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 GAP(Python)的新手。我正在使用 NDB 从数据存储中检索特定键值之后的所有值。
如果有人可以帮助我解决这个问题,请提前致谢?
我假设您正在设置密钥或正在使用分配 ID,否则这样的要求将没有多大意义。
您可以将键用作 order 参数。
例如我有一个产品模型
x = models.Product.query().order(models.Product.key)
鉴于此,我可以得到所有大于特定键的键
x = models.Product.query(models.Product.key > ndb.Key('Product','001132')).order(models.Product.key)
顺序有点无关紧要,但是嘿;-)