【问题标题】:Angular2 redirecting to root folderAngular2重定向到根文件夹
【发布时间】:2017-04-09 20:09:06
【问题描述】:



我是 Angular 2 的新手,正在尝试创建我的第一个应用程序。我正在关注this 教程来开发第一个应用程序。我按照建议创建了应用程序,我的主要文件是:

systemjs.config.js

(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);


ma​​in.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

问题

如下图所示,第三个请求已移至 localhost(Apache 服务器)的根目录。这里是Apache默认页面的仪表板。这会导致错误。


请在我缺少配置的地方帮助我。
提前致谢。

【问题讨论】:

  • 这很可能是服务器问题,因此如果您也为其添加标签,您可能会获得更多帮助。
  • 尝试在&lt;head&gt;idnex.html 中添加&lt;base href="/myangular"&gt; 作为第一个孩子

标签: apache angular typescript server localhost


【解决方案1】:

我遇到了同样的问题,通过将 &lt;base href="/"&gt; 更改为 &lt;base href="/myangular/"&gt; (index.html) 解决了这个问题。就我而言,我必须在文件夹名称后保留“/”。

【讨论】:

    猜你喜欢
    • 2015-10-06
    • 2011-12-20
    • 1970-01-01
    • 1970-01-01
    • 2014-08-29
    • 1970-01-01
    • 1970-01-01
    • 2015-07-13
    • 2016-11-11
    相关资源
    最近更新 更多