Angular2 - 404 GET /app/app.component.js

时间:2016-06-25 23:35:08

标签: angular

我从GitHub enter link description here下载了Angular2快速入门。我将所有配置文件移动到config目录以保持我的项目有条理。因此;我遇到了一个问题" 404 GET /app/app.component.js" ,如下所示。

所以,我的项目看起来像:

  • PROJECT_NAME
  • 应用
    • app.component.ts
    • main.ts
  • 配置
    • 包括所有配置文件(tsconfig,typings,package等)。

#输出样本

16.06.25 19:08:55 304 GET /main.js 16.06.25 19:08:55 304 GET /node_modules/@angular/platform-b​​rowser-dynamic//bundles/platform-b​​rowser-dynamic.umd.js 16.06.25 19:08:55 404 GET /app/app.component.js 16.06.25 19:08:55 304 GET /node_modules/@angular/common//bundles/common.umd.js 1 16.06.25 19:08:55 304 GET /node_modules/@angular/compiler//bundles/compiler.umd.js 16.06.25 19:08:55 304 GET /node_modules/@angular/core//bundles/core.umd.js 16.06.25 19:08:55 304 GET /node_modules/@angular/platform-b​​rowser//bundles/platform-b​​rowser.umd.js

#Main.ts



import {bootstrap}    from '@angular/platform-browser-dynamic';
import {AppComponent} from "app.component";

bootstrap(AppComponent);




#app.component.ts



import {Component} from '@angular/core';

@Component({
    selector: 'my-app',
    template: '<h1>My First Angular 2 App</h1>'
})
export class AppComponent { }
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

这可以通过改变来解决 从&#34; app.component&#34;导入{AppComponent};

  

从&#34; ./ app.component&#34;;

导入{AppComponent}