debug.activeDebugSession API在vscode上返回undefined

问题描述 投票:1回答:2

当我尝试使用debug apivscode时,我有一个问题。这是我正在使用的代码:

const vscode = require('vscode');

function activate(context) {

    console.log('Congratulations, your extension "helloworld" is now active!');

    let disposable = vscode.commands.registerCommand('extension.helloWorld', function () {

        // Display a message box to the user
        vscode.window.showInformationMessage('Hello World!'); // This works

        const session = vscode.debug.activeDebugSession;
        console.log(session); // returns undefined

        // I have tried this one, and no text is shown
        vscode.debug.activeDebugConsole.append("Hello from Debug Console");

        if (session) {
            session.customRequest("evaluate", {
                "expression": "Math.sqrt(10)"
            }).then(reply => {
                vscode.window.showInformationMessage(`result: ${reply.result}`);
            }, error => {
                vscode.window.showInformationMessage(`error: ${error.message}`);
            });
        }
    });

    context.subscriptions.push(disposable);
}
exports.activate = activate;

function deactivate() {}

module.exports = {
    activate,
    deactivate
}

为了尝试这个,我做了以下步骤:

  • 用自耕农创造了简单的"Hello World"扩展。
  • 用上面的代码替换了extension.js
  • 按F5启动(和调试)扩展。
  • 在新窗口中打开了一个简单的node.js程序。
  • 按F5调试简单程序。
  • 按下F1并键入“Hello”并运行“Hello World”扩展。

const session = vscode.debug.activeDebugSession;回归undefined

vscode.debug.activeDebugConsole.append("Hello from Debug Console");也没有显示任何内容。

我知道如果没有活动的调试会话,上面的代码将无法正常工作。所以:

我是否正确拥有活动的调试会话?我在这里做错了什么?

javascript visual-studio-code vscode-extensions vscode-debugger
2个回答
1
投票

我的建议:您必须订阅vscode.debug.onDidStartDebugSessionvscode.debug.onDidTerminateDebugSession以跟踪会话开始/结束的时间或更改时使用onDidChangeActiveDebugSession。此时,您可以知道会话处于活动状态,并且您的代码应该运行。


0
投票

我已按照以下步骤解决了问题:

  • 用自耕农创造一个简单的"Hello World"扩展。
  • 用上面的代码替换extension.js
  • 按F5启动(和调试)扩展。
  • 在新窗口打开,单击文件菜单,然后单击打开文件夹,并选择一个文件夹,其中是一个简单的node.js程序或一个vscode工作区(这是非常重要的)。
  • 在某些行中设置断点(对于了解测试的行为也很重要)。
  • 按F5调试简单程序(这是如何打开活动的调试会话)。
  • 按F1并键入“Hello”并运行“Hello World”扩展。
  • 欣赏结果!!!
© www.soinside.com 2019 - 2024. All rights reserved.