"rejected promise not handled within 1 second" vscode 扩展 API



我正在尝试为 VS 代码编写一个简单的扩展,将选择重命名为给定字符串。该应用程序是使用扩展生成器引导的:https://code.visualstudio.com/docs/extensions/example-hello-world#_generate-a-new-extension

为此,我使用以下代码:

const editor = vscode.window.activeTextEditor;
    if (!editor) throw Error;
    const position = editor.selection.active
    const uri = editor.document.uri
    vscode.commands.executeCommand("vscode.executeDocumentRenameProvider", uri, position, "donkey")
        .then(edit => {
            if (!edit) throw Error;
            return vscode.workspace.applyEdit(edit);
        });

该命令绑定到键绑定。我用 F5 启动调试器(启动 vs 代码的实例进行调试,如教程:https://code.visualstudio.com/docs/extensions/example-hello-world#_debugging-your-extension (。然后,我在在该调试实例中打开的文件中选择一组代码,然后按我的键绑定。

但是,在调试控制台中,我收到"拒绝的承诺未在 1 秒内处理"。没有抛出任何错误,并且由于 executeCommand 是一个 thenable,而不是一个真正的 Promise,我不能在它上面调用 catch((。

我试图将呼叫包装在尝试/捕获块中,但没有成功。 当我尝试其他人做其他事情时,例如使用 vscode.window.showInformationMessage 显示消息或提示用户输入它有效,但我没有看到错误。

我也尝试对扩展的打字稿版本做同样的事情,但我得到了相同的行为。

我看不出我做错了什么,我错过了什么吗?

Thenable.then接受两个参数:成功延续和失败延续。您可以使用失败延续来确保正确处理拒绝:

vscode.commands.executeCommand("vscode.executeDocumentRenameProvider", uri, position, "donkey")
    .then(edit => {
        if (!edit) throw Error;
        return vscode.workspace.applyEdit(edit);
    })
    .then(undefined, err => {
       console.error('I am error');
    })

这样,如果executeCommand、上一个thenapplyEdit失败,则拒绝得到正确处理

相关内容

  • 没有找到相关文章

最新更新