当我在 monaco 编辑器中使用自动完成时,this
成员变量似乎无法正确自动完成。例如:
function myFunc() {
this.foo = []
this.foo. // I would expect autocompletions here
var bar = []
bar. // this works, showing array methods, etc
}
如何让 this 成员变量也显示在自动完成中?
当我在 monaco 编辑器中使用自动完成时,this
成员变量似乎无法正确自动完成。例如:
function myFunc() {
this.foo = []
this.foo. // I would expect autocompletions here
var bar = []
bar. // this works, showing array methods, etc
}
如何让 this 成员变量也显示在自动完成中?