私はAngular2をいじくり始めたところ、奇妙なコンポーネントファイル拡張子の問題に遭遇しました:
angular.ioからの5分間のクイックスタートデモ を使用しましょう(参照用にここでコードを再現します)。
ファイル構造
angular2-quickstart
|- app
| |- app.component.ts
| |- boot.ts
|
|- index.html
|- package.json
|- tsconfig.json
package.json
{
"name": "angular2-quickstart",
"version": "1.0.0",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
},
"license": "ISC",
"dependencies": {
"angular2": "2.0.0-beta.0",
"systemjs": "0.19.6",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.0",
"zone.js": "0.5.10"
},
"devDependencies": {
"concurrently": "^1.0.0",
"lite-server": "^1.3.1",
"TypeScript": "^1.7.3"
}
}
tsconfig.json
{
"compilerOptions": {
"target": "ES5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules"
]
}
app/app.component.ts
import {Component} from 'angular2/core';
@Component({
selector: 'my-app',
template: '<h1>My First Angular 2 App</h1>'
})
export class AppComponent { }
app/boot.ts
import {bootstrap} from 'angular2/platform/browser'
import {AppComponent} from './app.component'
bootstrap(AppComponent);
index.html
<html>
<head>
<title>Angular 2 QuickStart</title>
<!-- 1. Load libraries -->
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<!-- 2. Configure SystemJS -->
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/boot')
.then(null, console.error.bind(console));
</script>
</head>
<!-- 3. Display the application -->
<body>
<my-app>Loading...</my-app>
</body>
</html>
これは魅力のように機能しますが、node_modules
と設定を含むファイル構造全体を公開しますが、これは悪い考えのようです。
そこで、app
フォルダーのみを公開しようとしました。それを達成するために、私は次のことをしました:
app/scripts
フォルダー内の参照されたjavascriptファイルをコピーしますapp
のindex.html
を移動しますpackage.json
のlite
スクリプトをlite-server --baseDir app
に変更しますこれを実行すると、angular2-polyfills.js
が返されることを除いてすべてが機能しました:
Error: XHR error (404 Not Found) loading http://localhost:3000/app.component(…)
run @ angular2-polyfills.js:138
zoneBoundFn @ angular2-polyfills.js:111
lib$es6$promise$$internal$$tryCatch @ angular2-polyfills.js:1511
lib$es6$promise$$internal$$invokeCallback @ angular2-polyfills.js:1523
lib$es6$promise$$internal$$publish @ angular2-polyfills.js:1494
lib$es6$promise$$internal$$publishRejection @ angular2-polyfills.js:1444
(anonymous function) @ angular2-polyfills.js:243
run @ angular2-polyfills.js:138zoneBoundFn @ angular2-polyfills.js:111
lib$es6$promise$asap$$flush @ angular2-polyfills.js:1305
もちろん、http://localhost:3000/app.component.js
を要求した場合、ファイルは正しく返されます。
だから私の質問は:なぜ.js
拡張がapp.component
に追加されないので、サーバーbaseDirがプロジェクトのルートであったときにこのエラーが発生したのですか?いくつかの設定オプションを見逃しましたか?
アプリフォルダーへのパスを構成できます。私の場合、angular 2を使用してアプリのモバイルバージョンを作成し、次のようにシステムを構成する必要がありました。
System.config({
paths: {
'app/*': './js/mobile/dist/*'
},
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/main')
.then(null, console.error.bind(console));
ご覧のとおり、「app」を「dist」にマップし、コンパイル済みのjsファイルをtsファイルとは別に保管することにしました。
この問題は、ファイルを新しい場所にリファクタリングするときにJetBrains WebStormが原因である可能性があります。インポート時に.ts拡張子を追加するようです。
そのため、新しいファイルをその場所に保管しますが、すべてのファイルのインポートを確認します。
すべてのインポートはこれに似ているはずです
import {MyComponent} from './Components/MyComponent';
そしてこれではない
import {MyComponent} from './Components/MyComponent.ts';
私のboot.ts
ファイルこの行を変更しました:
import {AppComponent} from './app.components'
そしてそれは動作します。今日もGoogleに報告しました。
私の場合、module.id
を追加すると解決します
@Component({
***moduleId: module.id,***
providers : [MyService],
templateUrl: 'sandbox.component.html',
})
App/main.tsがありません。それはほんの数行なので、クイックスタートで見逃すのはかなり簡単です。
しばらくの間髪を引っ張った後、クロームでも同じエラーが発生しました。アドブロックをオフにしてみましたが、その後機能しました。アドブロックがある場合は、おそらく犯人です
他の人が提案した他の多くの解決策を試した後、 ファイル名のドット の場合に当てはまることがわかりました。最初:
defaultJSExtensions: true,
しかし defaultJSExtensionsは将来廃止されるプロパティです および2番目:
packages: {
'.': {
defaultExtension: 'js'
}
}