程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> python-請問如何數據放在leancloud裡面如何查詢?

python-請問如何數據放在leancloud裡面如何查詢?

編輯:編程綜合問答
請問如何數據放在leancloud裡面如何查詢?

我數據存在leancloud裡面,要用python做個查詢,比如我知道一個人員的名字,想查詢他的年齡,我看了leancloud的官方文檔的查詢:

1:

 from leancloud import Object
from leancloud import

QueryGameScore = Object.extend('GameScore')query = Query(GameScore)

query.equal_to('playerName', 'Dan Stemkoski')
gameScores = query.first()
print gameScores

輸出的是一個

 <leancloud.object_.GameScore object at 0xb75072cc>,

不知道如何讀取這個數據的內容

2:然後我看有個select

 GameScore = Object.extend('GameScore')
query = Query(GameScore)
query.select('score', 'playerName')

仍然返回

 <leancloud.object_.GameScore object at 0xb75072cc>

3 然後試了一下fetch(),返回的是None,我確定表裡是有數據的。

 GameScore = Object.extend('GameScore')
query = Query(GameScore)
query.select('score', 'playerName')
print query.first().fetch()

請問該如何寫代碼,能像select age from people where name = ‘Jim’一樣返回一個字段信息?

最佳回答:


from leancloud import Object
from leancloud import

QueryGameScore = Object.extend('GameScore')
query = Query(GameScore)

query.equal_to('playerName', 'Dan Stemkoski')
gameScores = query.first()
print gameScores.get('score')

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved