- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我在我的 flutter 应用程序中使用 firebase_messaging
,我希望能够调试 onLaunch
回调触发时发生的情况。
问题是它会在收到通知并终止应用程序时触发。
一定有办法调试它吧?
最佳答案
因此,在 OP 讨论之后,您可以使用 print()
或 debugPrint()
函数调试 onLaunch
。
您可以像这样使用 adb 命令行在终端上获取 logcat 输出
$ adb shell
$ logcat -e "flutter" -v color
如果您有多个设备,您可以使用 -s
参数来选择您的设备。
-e
仅用于过滤内部有 flutter 词的日志消息
-v
color 是有格式化的颜色输出
由于 Android 插件不支持数据消息,您可以发送 notification
消息,以便调用 onLaunch
并提供此 data
领域:
"data": {"click_action": "FLUTTER_NOTIFICATION_CLICK", "id": "1", "status": "done"}
你可以这样发送消息
{
"to" : "<your device token>",
"collapse_key" : "type_a",
"priority" : "high",
"notification" : {
"body" : "Test notification body",
"title": "Test notification title",
"sound": "default"
},
"data": {"click_action": "FLUTTER_NOTIFICATION_CLICK", "id": "1", "status": "done", "foo":"bar"}
}
问题是你得到了不同的 Map
message JSON:
onMessage
你得到
{notification: {title: Custom sound alert.mp3, body: Test Notification body for custom sound 25/01/2019}, data: {status: done, id: 1, foo: bar, click_action: FLUTTER_NOTIFICATION_CLICK}}
取而代之的是 onLaunch
和 onResume
你会得到
{collapse_key: com.example.flutterapptestfcmmessaging, google.original_priority: high, google.sent_time: 1548447425689, google.delivered_priority: high, foo: bar, google.ttl: 2419200, from: 945032663190, id: 1, click_action: FLUTTER_NOTIFICATION_CLICK, google.message_id: 0:15484474256938..., status: done}
1-25 21:14:43.802 3445 3491 I flutter : onLaunch type:CastMap<dynamic, dynamic, String, dynamic> 01-25 21:17:11.568 37893838 I flutter : onLaunch 01-25 21:17:11.571 3789 3838 I flutter :--->>>> onLaunch {collapse_key: com.example.flutterapptestfcmmessaging, google.original_priority:high, google.sent_time: 1548447425689, google.delivered_priority:high, foo: bar, google.ttl: 2419200, from: 945032663190, id: 1,click_action: FLUTTER_NOTIFICATION_CLICK, google.message_id:0:15484474256938..., status: done} 01-25 21:17:11.5733789 3838 I flutter : onLaunch type: CastMap<dynamic, dynamic,String, dynamic> 01-25 21:17:11.574 3789 3838 I flutter : onLaunchfoo: bar
我使用 adb
获取了我的 printDebug
函数:
$ logcat -e "onLaunch" -v color
所以在 onMessage
中你可以得到这样的 foo 字段
print("onMessage foo: ${message['data']['foo']}");
在 onLaunch
中,您可以这样获取它:
debugPrint("onLaunch foo: " + message['foo']);
更新:iOS 设备
上面的调试 session 是针对 Android 设备的。
在 iOS 设备上,为了获得设备的控制台输出,您可以使用 Apple App Configurator 2或 Console
应用程序(来自 Applications
文件夹内的 Utilities
文件夹):
在 onMessage
上,您将收到:
{status: done, google.c.a.e: 1, id: 1, aps: {alert: {title: Test Notification, body: Test Notification at 26/01/2019}}, gcm.message_id: 0:15485106,,,, foo: bar, click_action: FLUTTER_NOTIFICATION_CLICK}
在 onResume
和 onLaunch
上:
{status: done, google.c.a.e: 1, id: 1, aps: {alert: {title: Test Notification, body: Test Notification at 26/01/2019}}, gcm.message_id: 0:15485109..., foo: bar, click_action: FLUTTER_NOTIFICATION_CLICK}
它们是相同的,所以我建议在 onMessage
中获取自定义数据之前检查平台。
为此你可以使用 dart.io
library Platform
类:
if (Platform.isAndroid) {
print("onMessage Android foo: ${message['data']['foo']}");
} else if (Platform.isIOS) {
debugPrint("onMessage iOS foo: " + message['foo']);
}
关于flutter - 在 Flutter 中调试 firebase_messaging 中的 onLaunch 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54367106/
昨晚我因为这个问题脑子崩溃了。在确保没有来 self 的 eclipse 错误检查的明显错误之后,我开始调试我的程序。顺便说一下,我正在使用 Jre7。无论如何,每次我进入我的类调用(我们称之为“a”
(前言:我对 C/C++ 还很陌生,我真的不知道 native 代码中的调试实际上是如何工作的。) 一些消息来源说 gdb 和 lldb 可以调试 any program compiled to ma
我正在尝试从 Visual Studio 2012 外部调试 T4Scaffolding.Core Nuget 包。我使用的是安装了 Powershell 3.0 的 Powershell ISE,并
如何调试汇编代码?我在 Linux 上使用 gdb。我知道我可以看寄存器。有哪些调试汇编代码的方法? 最佳答案 您当然可以使用 breakpoints就像 C 或任何其他编译语言一样。 This ar
如何在每次通话时打印列表或 haskell 中的内容,例如: funct a list = funct (a + 1) (a : list) print list her
让我用我对 Makefiles 或 make 知之甚少的评论作为这个问题的前缀。 有一个非常大的项目,每晚自动构建。它以 Debug 和 Release 模式构建,Debug 用于 Valgrind
我正在创建一个计算每周工资的程序,那么任何加类工资都是该周正常工资的 1.5 倍。我的代码如下: #include int main() { double payrate; double h
我使用的是 Visual Studio 2010 Express Developer 版本。开发网站。我在我的 .aspx 页面中使用 JavaScript。 如何在 Javascript 中放置断点
我最近开始修补 Project Euler 问题,并尝试用 Javascript 解决它们。这样做我往往会产生许多无限循环,现在我想知道是否有比终止 Firefox 或 Chrome 中的选项卡更好的
有没有办法在程序执行期间生成一个交互式 python 控制台(最好是 iPython)而不暂停主程序并且能够检查和修改程序变量?类似于浏览器为 JavaScript 提供的功能。 我知道 pdb.se
我正在使用 FFmpeg @ Android 并希望能够进入 FFmpeg 代码(Eclipse + Seqouya),同时编译 FFmpeg 我使用 --disable-stripping --en
我从使用互操作调用 win32 api 函数的 .net 进程中得到一个异常。 我有一个调试器,我想查看 LastError 的值。 是否可以从 Visual Studio 调试器中查看 LastEr
我正在尝试通过 VBA 创建一个宏,以在 IE 的多个选项卡中打开一组指定的链接。目前我正在使用下面的代码,如果我试图打开 3 个或更少的选项卡,它大部分时间都可以工作。任何超过 3 的代码都会在“N
好的,这似乎是一个愚蠢的问题,因为 MonoDevelop 越来越成熟,所以我确定我只是想念它,但我环顾四周,所有关于这个主题的问题似乎都是关于远程调试或 Mac 上的调试。 我使用的是 Ubuntu
如何调试 Rscripts是从命令行运行的? 我目前正在使用 getopt传递命令行选项的包,当有错误时,我很难: 看看到底出了什么问题; 在 R 中交互式调试(因为脚本需要命令行选项。) 有没有人有
支持 PDF 和网络上的信息很少。我碰巧在博客中看到一篇文章,提到 $.write() 或 $.writeln() 将向 javascript 控制台写入一个字符串。相当有用。有谁知道这个 $ 对象是
PyCharm 1.5 中是否可以使用 Firefox 和 Chrome 支持的 JavaScript 调试? 如果是这样,它能否与 Python/Django 调试器一起有效运行? 如果没有,有没有
我确定这以前发生在人们身上,某些东西在 Debug模式下工作,你在发布时编译,但有些东西坏了。 这发生在我在嵌入式 XP 环境中工作时,我发现最好的方法确实是编写一个日志文件来确定它会出错的地方。 您
我目前正在为即将到来的项目评估 Flow3。 AOP 模式和依赖注入(inject)将非常适合我们的目的。 现在我想不通的是如何在 Controller Action 中调试一些结果。 public
最初,我有一个包含测试服务器的 Django 应用程序。要调试此设置,我只需添加 import pdb; pdb.set_trace()代码中的任何位置,并且有一个断点将我扔到终端中的交互式调试器中(
我是一名优秀的程序员,十分优秀!