摩纳哥编辑打字稿不提供建议
monaco-editor typescript not providing suggestions
在 monaco-editor 中,如果您尝试使用联合类型作为函数的参数,它不会为您提供任何建议。在 vscode 中执行相同操作可为您提供建议。是否需要在摩纳哥启用某些功能才能获得相同的功能?
它确实提供了正确的检查和错误,但似乎缺少建议。
有人有什么建议吗?还是 monaco-editor 不支持此功能?
示例如下:
type Test = {
choice1: "A" | "B" | "C";
choice2: "X" | "Y" | "Z";
}
function test<T extends keyof Test>(t: T, s: Test[T]) {
}
test("choice1", "")
vscode:
摩纳哥编辑:
我也试过一个简单的联合类型和相同的
Simple in Monaco
type Test2 = "something" | "somethingelse"
function test2(t: Test2) {
}
test2("")
这一定是个简单的错误。它在我的应用程序和 monaco-editor playground:
中运行良好
在 monaco-editor 中,如果您尝试使用联合类型作为函数的参数,它不会为您提供任何建议。在 vscode 中执行相同操作可为您提供建议。是否需要在摩纳哥启用某些功能才能获得相同的功能?
它确实提供了正确的检查和错误,但似乎缺少建议。
有人有什么建议吗?还是 monaco-editor 不支持此功能?
示例如下:
type Test = {
choice1: "A" | "B" | "C";
choice2: "X" | "Y" | "Z";
}
function test<T extends keyof Test>(t: T, s: Test[T]) {
}
test("choice1", "")
vscode:
摩纳哥编辑:
我也试过一个简单的联合类型和相同的 Simple in Monaco
type Test2 = "something" | "somethingelse"
function test2(t: Test2) {
}
test2("")
这一定是个简单的错误。它在我的应用程序和 monaco-editor playground:
中运行良好