2013-11-01 84 views
7
Class user(ndb.Model): 
    def post(self): 
    name = db.StringProperty() 
    age = db.StringProperty() 
Class search(webapp2.RequestHandler): 
    def post(self): 
    x = userData.query().filter("age >=",1) #error points to this line 

我收到一個錯誤:無法過濾非節點參數;收到「年齡> =」無法過濾非節點參數 - 數據存儲 - 谷歌應用引擎 - python

我下面在https://developers.google.com/appengine/docs/python/datastore/queries

提到請讓我知道如何解決這個問題的語法。

回答

相關問題