gpt4 book ai didi

Angular 2 异常 : TypeError: Cannot read property 'annotations' of undefined

转载 作者:太空狗 更新时间:2023-10-29 17:06:17 24 4
gpt4 key购买 nike

我做错了什么?

应用程序组件.ts

import {Component} from 'angular2/core';
@Component({
selector: 'my-app',
template: `{{title}}`
})
export class App {
title = "Angular 2 beta";
constructor() { console.clear(); }
}

主要.ts

import {bootstrap} from 'angular2/platform/browser';
import {AppComponent} from './app.component';

bootstrap(AppComponent);

错误是

EXCEPTION: TypeError: Cannot read property 'annotations' of undefined

最佳答案

类名与您引导的内容不匹配。即,而不是

export class App { ... }

使用

export class AppComponent { ... }

Angular 正在尝试查找名为 AppComponent 的类的 annotations 属性,但该类不存在,因此出现错误。

关于 Angular 2 异常 : TypeError: Cannot read property 'annotations' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36942455/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com