我正在将Visual Studio Code与版本1.32.2一起使用,但是在早期版本中,我也看到了此问题,并且我拥有MacBook Pro 2018 2.6GHz。有时,当我编写代码时,我会使用快捷方式ngOnInit() {
this.assetForm = new FormGroup({
id_number: new FormControl(''),
});
}
onSubmit() {
if (this.assetForm.invalid) {
this.assetForm.setErrors({ ...this.assetForm.errors, 'required': true });
return;
}
this.uploading = true;
this.service.post(this.assetForm.value).subscribe((response: any) => {
console.log(response);//On success response
}, (errorResponse: any) => {
console.log(errorResponse); //On unsuccessful response
this.error = true;
this.uploading = false;
});
}
在文件之间切换,并且发现了一个大问题,我需要等待15-20分钟,或者只是重新启动Visual Studio Code。当我想检查智能感知时,我收到消息
正在加载...
在文件顶部,我看到了用于加载智能感知的微调器。真的很烦人,因为我需要手写所有内容。有人也看到了这个问题吗?
我尝试重新安装VSCode和Mojave,但对我没有任何帮助。
编辑
当我按下TAB键时,默认情况下我无法切换,但是在VSCode的底部,我看到了消息和微调框
激活扩展...
答案 0 :(得分:0)
其中一些扩展确实解决了加载问题,我通过卸载这些扩展解决了问题:
debugger-for-chrome
html-css-class-completion
答案 1 :(得分:0)
卸载“ debugger-for-chrome”扩展程序对我有用。