vscode右下角有如下提示:
Frame skipped from debugging during step-in. Note: may have been skipped because of "justMyCode" option (default == true). Try setting "justMyCode": false in the debug configuration (e.g., launch.json).
这个提示意味着调试器在进行“步进进入”操作时跳过了一些代码帧,这可能是因为默认情况下 justMyCode 选项设置为 true。这个选项会使调试器只关注用户自己的代码,而跳过库和框架的内部实现代码。这个行为有时会导致跳过你实际想要调试的代码
"justMyCode":false
设置一下就好了
解决VSCode调试跳过代码帧问题
1835

被折叠的 条评论
为什么被折叠?



