2

私は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.jstsconfig.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をハードコーディングしても、何も更新されません。私は何が間違っているのか分かりませんが、今や多くのことを挫折させ始めました。助けてください?

+0

保存後にtsファイルが新しくコンパイルされていますか?あなただけの 'app.component.js'ファイル – yurzui

+0

(アプリケーションフォルダにコンパイルされた)すべてのjsを削除して試してみてください – anshuVersatile

+0

'npm start'を使って実行すると不思議にも十分です。しかし、私はビジュアルスタジオから実行するとき、typescriptコンパイラは、更新された(コンパイルされた)javascriptを生成しません –

答えて

3

ブラウザでF12キーを押すと、開発者ツールが表示されます。私が変更さSee here

+1

どのようにプロダクションモードで動作する必要がありますか?ユーザーにブラウザの設定を変更するよう依頼することはできませんが、一方ではキャッシュを維持したいと考えています。 – user1595443

0

enter image description here

以下のようにキャッシュを無効にする第二に、私はキャッシュ

<location path="app"> 
    <system.webServer> 
     <staticContent> 
     <clientCache cacheControlMode="DisableCache"/> 
     </staticContent> 
    </system.webServer> 
</location> 

ソースを無効にするには、web.configファイルにだけタグの上に、このセクションを追加しましたtsconfig.json

compileOnSavefalseからtrueそれは私のために働いた。

関連する問題