我从GitHub enter link description here下载了Angular2快速入门。我将所有配置文件移动到config目录以保持我的项目有条理。因此;我遇到了一个问题" 404 GET /app/app.component.js" ,如下所示。
所以,我的项目看起来像:
#输出样本
16.06.25 19:08:55 304 GET /main.js 16.06.25 19:08:55 304 GET /node_modules/@angular/platform-browser-dynamic//bundles/platform-browser-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-browser//bundles/platform-browser.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;
答案 0 :(得分:0)
这可以通过改变来解决
从&#34; app.component&#34;导入{AppComponent};
到
从&#34; ./ app.component&#34;;
导入{AppComponent}