angular2报错记录-@Component装饰器

版权声明:此文首发于我的个人站angular2报错记录-@Component装饰器,转载请注明出处。

Unexpected value ‘AnyComponent’ declared by the module ‘AppModule’…

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

@Component({
  selector: 'app-hero-app',
  templateUrl: './hero-app.component.html',
  styleUrls: ['./hero-app.component.scss']
})  //这里必须紧挨着,不能换行,这样的装饰器紧接着的类才是一个组件
export class HeroAppComponent implements OnInit {
    title = 'Tour of Heroes';
    heroes = HEROES;
    selectedHero: Hero;
    constructor() { }

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

}
@Component({
  selector: 'app-hero-app',
  templateUrl: './hero-app.component.html',
  styleUrls: ['./hero-app.component.scss']
})  //下边有了一个换行,这样就会报错     

export class HeroAppComponent implements OnInit {
    title = 'Tour of Heroes';
    heroes = HEROES;
    selectedHero: Hero;
    constructor() { }

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

}
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值