web-dev-qa-db-ja.com

ASP .NET 4.5.1のAngularJs 2

既存のASP.NET 4アプリのフロントエンドにMVC 6/ASP.NET COREではなくAngular 2を使用したいので、ノードを使用したくないパッケージマネージャーとして既にnugetを使用しています。

16
Dan O'Leary

私の元の質問に答えるために、これが.net 4.5.1でAngular 2を起動して実行することに成功した方法です(最終的にnpmを使用する必要がありました)。

_Layout.cshtmlのヘッダーで、Angular 2ファイルをcdnおよび構成済みSystemJからインポートしました。

<!-- 1. Load libraries -->
<!-- IE required polyfills, in this exact order -->
<script src="../../node_modules/es6-shim/es6-shim.min.js"></script>
<script src="../../node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="../../node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script>

<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: {
        'my-app': {
        format: 'register',
        defaultExtension: 'js'
      }
    }
  });
    System.import('my-app/main')
        .then(null, console.error.bind(console));
</script>

Package.jsonおよびtsconfig.jsonをプロジェクトのルートに追加しました

packages.json:

{
 "name": "angular2-quickstart",
 "version": "1.0.0",
 "scripts": {
  "tsc": "tsc",
  "tsc:w": "tsc -w",
  "typings": "typings",
  "postinstall": "typings install"
  },
 "license": "ISC",
 "dependencies": {
  "angular2": "2.0.0-beta.9",
  "systemjs": "0.19.24",
  "es6-promise": "^3.0.2",
  "es6-shim": "^0.35.0",
  "reflect-metadata": "0.1.2",
  "rxjs": "5.0.0-beta.2",
  "zone.js": "0.5.15"
 },
 "devDependencies": {
  "TypeScript": "^1.8.7",
  "typings": "^0.7.5"
  }
}

tsconfig.json:

{
 "compileOnSave": true,
 "compilerOptions": {
 "target": "es5",
 "module": "system",
 "moduleResolution": "node",
 "sourceMap": true,
 "emitDecoratorMetadata": true,
 "experimentalDecorators": true,
 "removeComments": false,
 "noImplicitAny": false
},
"exclude": [
 "node_modules",
 "typings/main",
 "typings/main.d.ts"
 ]
}

マシンにノードとnpmがインストールされている場合、必要なnpmモジュールが自動的にダウンロードされ、node_modulesフォルダーに保存されます。これでAngular 2アプリケーションをセットアップする準備ができました。開始するには this を使用しました。

19
Dan O'Leary

彼らはAngular非コアシナリオのサイトを更新しました:

https://angular.io/docs/ts/latest/cookbook/visual-studio-2015.html

2
McGuireV10