Unexpected value 'DataUserWdFileListComponent' declared by the module 'AppModule'. Please add a @Pip

来源:互联网 发布:淘宝主机烈士墙 编辑:程序博客网 时间:2024/06/12 18:15
此报错的原因: 

因为装饰器@component需要紧挨着要导出的组件,没有这个修饰符,你的组件并不是一个真正的组件,只是一个类。

@Component({

selector:'app-hero-app',

templateUrl:'./hero-app.component.html',

styleUrls: ['./hero-app.component.scss']})

//这里必须紧挨着,不能换行,这样的装饰器紧接着的类才是一个组件

exportclassHeroAppComponentimplementsOnInit {

title ='Tour of Heroes';

heroes = HEROES;

selectedHero: Hero;

constructor() { }

ngOnInit() { }

onSelect(hero: Hero):void { this.selectedHero = hero; }}

阅读全文
0 0
原创粉丝点击