2
有沒有辦法使用query.filter()來查看元素是否在實體的字符串列表屬性中?所以:查詢過濾GAE中的字符串列表屬性
class Rainbow(db.Model):
colors = StringListProperty()
def filt():
results = db.GqlQuery("SELECT * FROM Rainbow WHERE colors = 'yellow'")
return results
這將返回所有結果,其中「黃色」是彩虹。然而,是否有一些方法可以使用查詢對象來完成此操作?因此:
def filt():
q = Rainbow.all()
q.filter('colors =', 'yellow') # something like this?