node.js – 带有TypeScript的Angular2:在@component之后声明预期的编译器错误

前端之家收集整理的这篇文章主要介绍了node.js – 带有TypeScript的Angular2:在@component之后声明预期的编译器错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我得到这种错误,尽管我从angular2 / core导入的组件应该是它的来源是文件不是通过npm install下载的,或者我的节点需要升级

这是我的档案

import {bootstrap} from 'angular2/platform/browser';
import {Component,View} from 'angular2/core';

@Component({

})

解决方法

在组件后面定义一个类.
import {bootstrap} from 'angular2/platform/browser';
import {Component,View} from 'angular2/core';

@Component({

})
class MyClass {

}

@Component只是一个包含该类元数据的装饰器.换句话说,它只是以更优雅的方式为您的课程定义内容.

The @Component function takes the configuration object and turns it into Metadata that it attaches to the component class definition. Angular discovers this Metadata at runtime and thus knows how to do “the right thing”.

Read more here

原文链接:https://www.f2er.com/nodejs/241049.html

猜你在找的Node.js相关文章