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