在安装npm后,我运行了角度代码,它给出了以下错误未捕获的错误:无法解析ContactComponent的所有参数:(?)。有人告诉我为什么吗?
这是我的代码
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-contact',
templateUrl: './contact.component.html',
styleUrls: ['./contact.component.css']
})
export class ContactComponent implements OnInit {
constructor(private router: Router) { }
ngOnInit() {
}
onGotoClick($event: any) {
console.log($event.target.value);
this.router.navigate(['/home']);
// this.router.navigateByUrl('/home');
}
}
答案 0 :(得分:0)
您的联系人组件构造函数具有无法解决的依赖项。
答案 1 :(得分:0)
可能是您没有在定义此组件的模块中包含“ RouterModule”。