2016-11-25 272 views
0



我是Angular 2的新手,嘗試創建我的第一個應用程序。我正在按照this教程開發第一個應用程序。我創建的應用程序的建議和我的主要文件是:

systemjs.config.jsAngular2重定向到根文件夾

(function (global) { 
 
    System.config({ 
 
    paths: { 
 
     // paths serve as alias 
 
     'npm:': 'node_modules/' 
 
    }, 
 
    // map tells the System loader where to look for things 
 
    map: { 
 
     // our app is within the app folder 
 
     app: 'app', 
 

 
     // angular bundles 
 
     '@angular/core': 'npm:@angular/core/bundles/core.umd.js', 
 
     '@angular/common': 'npm:@angular/common/bundles/common.umd.js', 
 
     '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js', 
 
     '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js', 
 
     '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js', 
 
     '@angular/http': 'npm:@angular/http/bundles/http.umd.js', 
 
     '@angular/router': 'npm:@angular/router/bundles/router.umd.js', 
 
     '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js', 
 

 
     // other libraries 
 
     'rxjs':      'npm:rxjs', 
 
     'angular2-in-memory-web-api': 'npm:angular2-in-memory-web-api', 
 
    }, 
 
    // packages tells the System loader how to load when no filename and/or no extension 
 
    packages: { 
 
     app: { 
 
     main: './main.ts', 
 
     defaultExtension: 'ts' 
 
     }, 
 
     rxjs: { 
 
     defaultExtension: 'js' 
 
     }, 
 
     'angular2-in-memory-web-api': { 
 
     main: './index.js', 
 
     defaultExtension: 'js' 
 
     } 
 
    } 
 
    }); 
 
})(this);


main.ts

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 
 

 
import { AppModule } from './app.module'; 
 

 
platformBrowserDynamic().bootstrapModule(AppModule);


app.module.ts

import { NgModule }  from '@angular/core'; 
 
import { BrowserModule } from '@angular/platform-browser'; 
 

 
import { AppComponent } from './app.component'; 
 

 
@NgModule({ 
 
    imports: [ BrowserModule ], 
 
    declarations: [ AppComponent ], 
 
    bootstrap: [ AppComponent ] 
 
}) 
 
export class AppModule { }


app.component.ts

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

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


而且我從初始化下面的代碼的角度index.html中

<script src="node_modules/core-js/client/shim.min.js"></script> 
 

 
    <script src="node_modules/zone.js/dist/zone.js"></script> 
 
    <script src="node_modules/reflect-metadata/Reflect.js"></script> 
 
    <script src="node_modules/systemjs/dist/system.src.js"></script> 
 

 
    <script src="systemjs.config.js"></script> 
 
    
 
    <script> 
 
     // import the 'app' module to boostrap the application 
 
     System.import('app') 
 
      .catch(function(err){ console.error(err); }); 
 
    </script>


我的項目文件夾的名字是myangular。所以,我的要求是http://localhost/myangular/index.html

問題

正如你可以看到下面的圖像,第三請求轉移到本地主機(Apache服務器)根。這裏是Apache的默認頁面的儀表板。這導致錯誤。

enter image description here


請幫我在哪裏,我缺少的配置。
在此先感謝。

+1

這很可能是服務器問題,所以如果您爲它添加標記,您可能會獲得更多幫助。 – toskv

+0

嘗試添加''作爲'idnex.html'的''中的第一個孩子 –

回答

0

我有同樣的問題,通過更改<base href="/"><base href="/myangular/">(index.html)來解決。在我的情況下,我必須在文件夾名稱後面加上「/」。