作者:EvilMaknaeKYU | 来源:互联网 | 2023-10-12 10:30
HereIamagain,hopingtofindaquicksolutiontothis:在这里,我再次希望找到一个快速解决方案:Link<-Clickon
Here I am again, hoping to find a quick solution to this:
在这里,我再次希望找到一个快速解决方案:
Link <- Click on this link to see the folder structure
链接<- 单击此链接可查看文件夹结构
//main.ts
import {bootstrap} from 'angular2/platform/browser';
import {AppComponent} from './home.main';
import {InputComponent} from './home.controller';
import {enableProdMode} from 'angular2/core';
bootstrap(InputComponent);
bootstrap(AppComponent);
This is my main.ts file where I import the AppComponent from home main, now the home.main looks like this:
这是我的main.ts文件,我从home main导入AppComponent,现在home.main看起来像这样:
import {Component} from 'angular2/core';
@Component({
selector:'home',
templateUrl:'/index/index.ejs'
})
export class InputComponent {
name = 'test';
}
However, when I run this, I get: error TS2305: Module '"controllers/home/home.main"' has no exported member 'AppComponent'. ( Same goes for home.controller ).
但是,当我运行它时,我得到:错误TS2305:模块'“controllers / home / home.main”'没有导出成员'AppComponent'。 (同样适用于home.controller)。
Thank you, Alex S.
谢谢Alex S.
3 个解决方案