如何使用 firesharp 从 firebase 获取所有数据
How to get all data from firebase with firesharp
我在 firebase 中有 user_table,我想从 user_table.
中获取所有节点数据作为列表
我可以使用
获取所有数据
FirebaseResponse response = await client.GetTaskAsync("User_Table\");
,那么我无法将 json 数据序列化到对象
FirebaseResponse response = await client.GetTaskAsync("User_Table\");
List<UserList> usr = (List<UserList>)JsonConvert.DeserializeObject(response.ToString(), (typeof(List<UserList>)));
您尝试过使用 dictionary
和 foreach
吗?
您也可以尝试按照 YouTube 上的教程进行操作
https://m.youtube.com/watch?v=oeblTSuBjSo&t=1s
示例:
FirebaseResponse response = await client.GetAsync("users");
Dictionary<string, Class> data = response.ResultAs<Dictionary<string, Data>>();
return data;
我在 firebase 中有 user_table,我想从 user_table.
中获取所有节点数据作为列表我可以使用
获取所有数据FirebaseResponse response = await client.GetTaskAsync("User_Table\");
,那么我无法将 json 数据序列化到对象
FirebaseResponse response = await client.GetTaskAsync("User_Table\");
List<UserList> usr = (List<UserList>)JsonConvert.DeserializeObject(response.ToString(), (typeof(List<UserList>)));
您尝试过使用 dictionary
和 foreach
吗?
您也可以尝试按照 YouTube 上的教程进行操作 https://m.youtube.com/watch?v=oeblTSuBjSo&t=1s
示例:
FirebaseResponse response = await client.GetAsync("users");
Dictionary<string, Class> data = response.ResultAs<Dictionary<string, Data>>();
return data;