int routineCount =0;
var response2 = await FirebaseDatabase.instance
.reference()
.child("Users")
.child(userId)
.child("currentRoutine")
.once();
response2.value.forEach((k)=>routineCount++);
但有些事情没有用。为了解码我需要看到完整的请求(格式化它将命中服务器)。怎么打印这个?
答案 0 :(得分:1)
要查看打印到控制台的请求中的大部分信息,您可以使用:
dump(request)
我认为更好的选择是使用像Charles或Wireshark这样的工具,正如Rob在评论中提到的那样。