收到错误:"没有导出的成员"

时间:2016-08-30 09:08:03

标签: asp.net angularjs angular asp.net-core

所以this is my test app我试过建设。请下载以查看代码。

我正按照TypeScript site here的说明进行操作。

我在照片中收到了这两个错误。 enter image description here

1 - 谁能说出错误?

2 - 是否有人链接到最近的教程,该教程展示了如何使用Angular 2设置实际有效的ASP.NET Core项目?

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

app.ts应该是这样的

export class MyApp { //export class here
    model = new MyModel();
    getCompiler() {
        return this.model.compiler;
    }
}

以便您可以在引导应用时导入