firestoreで下記のようにデータを取得します。
city = 'tokyo' docs = database.collection('users').where('city', '==', city).stream() for list in docs: lists = list.to_dict() print(lists)
結果が以下だとして、
{'city': 'tokyo', 'name': 'risa'} {'city': 'tokyo', 'name': 'mami'}
その後下記のようにリストにまとめたいのですが
['risa','mami']
なにかいい方法はございませんか?ご教授お願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/07 20:06