私はangular 1
の背景からすべての作業がスムーズに行われ、Visual Studioで基本アプリケーションをangular 2
で実行しても重大な問題が発生しています。私はビジュアルスタジオで空のプロジェクトを作成し、 "5分のチュートリアル"に非常に注意深く従った。最終的に動作するようになったのですが、テンプレートをapp.component.ts
に変更するとUIの更新に関する問題が発生し、ブラウザ上に何も表示されませんでした。私はファイルを再起動して再実行しましたが、まだ古い出力がブラウザに表示されています。Angularjs 2 - テンプレートまたはコンポーネントを更新してもUIが更新されない
{
"compileOnSave": true,
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
}
}
Systemjs.config.js
tsconfig.json
で:
後
は私のコードです/**
* System configuration for Angular samples
* Adjust as necessary for your application needs.
*/
(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',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './main.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
}
}
});
})(this);
マイindex.html
あり、以下の内容
<!DOCTYPE html>
<html>
<head>
<title>Angular QuickStart</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<!-- Polyfill(s) for older browsers -->
<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>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<body>
<my-app>Loading</my-app>
</body>
</html>
app.module.ts
で
が、私はapp.component.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 { }
を持っている:
main.ts
で
import { Component } from "@angular/core";
@Component({
selector: "my-app",
template: "<h2>Initiating {{angularVersion}}</h2>"
})
export class AppComponent {
angularVersion = "Angular2.0";
}
そして最後に、私が持っている:
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
import { AppModule } from "./app.module";
platformBrowserDynamic().bootstrapModule(AppModule);
これは私がスタートアップとしてindex.html
を設定"Initiating Angular2.0"
として出力を表示しますビジュアルスタジオ2015にファイルを作成し、プロジェクトを実行します。私の問題は、もし私がangularVersion変数を2.1に更新したり、何か他のもの(h2からpなど)に変更してファイルを再実行しても、それでも私には"Initiating Angular2.0"
が表示されます。 Template
をハードコーディングしても、何も更新されません。私は何が間違っているのか分かりませんが、今や多くのことを挫折させ始めました。助けてください?
保存後にtsファイルが新しくコンパイルされていますか?あなただけの 'app.component.js'ファイル – yurzui
(アプリケーションフォルダにコンパイルされた)すべてのjsを削除して試してみてください – anshuVersatile
'npm start'を使って実行すると不思議にも十分です。しかし、私はビジュアルスタジオから実行するとき、typescriptコンパイラは、更新された(コンパイルされた)javascriptを生成しません –