4

コンポーネントでhtmlの相対パスを使用しようとしていますが、jsファイルをdistフォルダーにマッピングしています..私のコンポーネントコードは

app/app.component.ts

import { Component } from '@angular/core';
@Component({
  moduleId: module.id,
  selector: 'my-app',
  templateUrl: 'app.component.html'
})
export class AppComponent { }

html ファイルは同じディレクトリにあります。つまり、app/app.component.html です。

<h1> Wolaa </h1>

次のエラーが表示されます

私が得るエラー

angularが「dist/app/app.component.html」でapp.component.htmlファイルを見つけていることは完全に明らかですが、そこにはありません。これを修正するにはどうすればよいですか??

私のsystemjs.config.jsファイルは

/**
 * System configuration for Angular 2 samples
 * Adjust as necessary for your application needs.
 */
(function(global) {
  // map tells the System loader where to look for things
  var map = {
    'app':                        'dist', //'app',
    '@angular':                   'node_modules/@angular',
    'angular2-in-memory-web-api': 'node_modules/angular2-in-memory-web-api',
    'rxjs':                       'node_modules/rxjs'
  };
  // packages tells the System loader how to load when no filename and/or no extension
  var packages = {
    'app':                        { main: 'main.js',  defaultExtension: 'js' },
    'rxjs':                       { defaultExtension: 'js' },
    'angular2-in-memory-web-api': { main: 'index.js', defaultExtension: 'js' },
  };
  var ngPackageNames = [
    'common',
    'compiler',
    'core',
    'forms',
    'http',
    'platform-browser',
    'platform-browser-dynamic',
    'router',
    'router-deprecated',
    'upgrade',
  ];
  // Individual files (~300 requests):
  function packIndex(pkgName) {
    packages['@angular/'+pkgName] = { main: 'index.js', defaultExtension: 'js' };
  }
  // Bundled (~40 requests):
  function packUmd(pkgName) {
    packages['@angular/'+pkgName] = { main: 'bundles/' + pkgName + '.umd.js', defaultExtension: 'js' };
  }
  // Most environments should use UMD; some (Karma) need the individual index files
  var setPackageConfig = System.packageWithIndex ? packIndex : packUmd;
  // Add package entries for angular packages
  ngPackageNames.forEach(setPackageConfig);
  var config = {
    map: map,
    packages: packages
  };
  System.config(config);
})(this);

そして私の tsconfig.json は

{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false,
    "outDir": "dist"
  }
}
4

3 に答える 3

1

ドキュメントのテンプレートの相対パスに関する詳細を次に示します。

https://angular.io/docs/ts/latest/cookbook/component-relative-paths.html

于 2016-09-05T07:39:10.207 に答える
0

これは、これまでに見つけた最良の解決策 です。私の場合はmoduleId: module.id.replace("/dist/", "/src/");です。ここから撮影。srcapp

于 2016-09-05T18:20:05.683 に答える