我在 Peewee 有这个查询:
return c = Products.get(Products.sku == article).get()
如何检查它是否返回数据?
我试过:
if c.count() > 0:
if len(c) > 0
它对我不起作用
这是完整的代码:
try:
r = self.isProductExist(row['sku'])
## if (r.count() == 0):
except peewee.DoesNotExist:
# Insert product
def isProductExist(self, article):
return Products.get(Products.sku == article).get()