Angularのバージョン4でAngularJS v1アプリを動作させる方法を確認しました。
※Angularの4.4.3版、TypeScriptを使って確認したものです。
※目次をクリックすると目次の下部にコンテンツが表示されます。
AngularJS(v1)のサンプルコード
●HTML
<script src="https://unpkg.com/angular@1.6.5/angular.min.js"></script> <script src="v1.js"></script> <link rel="stylesheet" href="../css/bootstrap.min.css"> </head> <body ng-app="mainModule"> <div ng-controller="bindingCtrl"> <strong>1)Wayデータバインディング</strong><br /> <div>・ng-bind:私は<span ng-bind="country"></span>在住です。</div> <div>・二重波括弧:私は{{country}}在住の{{gender}}です。</div> <div>・ng-bind-template:私は{{country}}在住の{{gender}}です。</div> <div ng-non-bindable>・二重波括弧{{....}}を表示するには、ng-non-bindableを使用。</div> <strong>2)2Wayデータバインディング</strong><br /> <div>私の名前は{{name}}です。</div> 名前:<input ng-model="name" /><br /> </div> </body>
●スクリプト(v1.js)
var myApp = angular.module('mainModule', []); myApp.controller("bindingCtrl", function ($scope) { $scope.country = "日本"; $scope.gender = "男性"; $scope.name = "初期値"; });
v4のUpgradeModuleを使って、AngularJS v1アプリを動作
1)AngularJS v1アプリの起動部分を修正
v1アプリでは、HTML内に”ng-app”ディレクティブを記述してアプリを起動していましたが、Angular2以降ではこのディレクティブを使わずに起動するので、v1アプリを”ng-app”ディレクティブを使わずに起動する形に修正します。
○HTML
以下のように修正
<body ng-app=”mainModule”>
↓
<body>
2)v4のUpgradeModuleを使ってv1アプリのモジュールを起動
下記のようにv1アプリのモジュール’mainModule’をUpgradeModuleのupgrade.bootstrapを使って起動します。
v1アプリでは、HTML内に”ng-app”ディレクティブを記述してアプリを起動していましたが、Angular2以降ではこのディレクティブを使わずに起動するので、v1アプリを”ng-app”ディレクティブを使わずに起動する形に修正します。
○HTML
以下のように修正
<body ng-app=”mainModule”>
↓
<body>
2)v4のUpgradeModuleを使ってv1アプリのモジュールを起動
下記のようにv1アプリのモジュール’mainModule’をUpgradeModuleのupgrade.bootstrapを使って起動します。
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { Component } from '@angular/core'; import { UpgradeModule } from '@angular/upgrade/static'; @NgModule({ imports: [ BrowserModule, UpgradeModule ], declarations: [ ] }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.body, ['mainModule']); } } platformBrowserDynamic().bootstrapModule(AppModule);
●デモ
Angular : 4.4.3
Bootstrap : 3.x
こちらをクリック。
<html> <head> <script src="https://unpkg.com/angular@1.6.4/angular.min.js"></script> <script src="https://npmcdn.com/core-js/client/shim.min.js"></script> <script src="https://unpkg.com/zone.js@0.7.4?main=browser"></script> <script src="https://npmcdn.com/systemjs@0.19.39/dist/system.src.js"></script> <script src="upg_v1.js"></script> <script src="./js/systemjs.config.js"></script> <script> System.import('./ts/upg.ts').catch(function(err){ console.error(err); }); </script> <link rel="stylesheet" href="./css/bootstrap.min.css"> <link rel="stylesheet" href="./css/styles.css"> </head> <body> <div ng-controller="bindingCtrl"> <strong>1)Wayデータバインディング</strong><br /> <div>・ng-bind:私は<span ng-bind="country"></span>在住です。</div> <div>・二重波括弧:私は{{country}}在住の{{gender}}です。</div> <div>・ng-bind-template:私は{{country}}在住の{{gender}}です。</div> <div ng-non-bindable>・二重波括弧{{....}}を表示するには、ng-non-bindableを使用。</div> <strong>2)2Wayデータバインディング</strong><br /> <div>私の名前は{{name}}です。</div> 名前:<input ng-model="name" /><br /> </div> </body> </html> (systemjs.config.js) (function (global) { var ngVer = '@4.4.3'; System.config({ transpiler: 'ts', typescriptOptions: { "target": "es5", "module": "commonjs", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "lib": ["es2015", "dom"], "noImplicitAny": true, "suppressImplicitAnyIndexErrors": true, "strict": true }, meta: { 'typescript': { "exports": "ts" } }, paths: { 'npm:': 'https://unpkg.com/' }, map: { 'app': 'app', '@angular/animations': 'npm:@angular/animations' + ngVer + '/bundles/animations.umd.js', '@angular/animations/browser': 'npm:@angular/animations' + ngVer + '/bundles/animations-browser.umd.js', '@angular/core': 'npm:@angular/core' + ngVer + '/bundles/core.umd.js', '@angular/common': 'npm:@angular/common' + ngVer + '/bundles/common.umd.js', '@angular/common/http': 'npm:@angular/common' + ngVer + '/bundles/common-http.umd.js', '@angular/compiler': 'npm:@angular/compiler' + ngVer + '/bundles/compiler.umd.js', '@angular/platform-browser': 'npm:@angular/platform-browser' + ngVer + '/bundles/platform-browser.umd.js', '@angular/platform-browser/animations': 'npm:@angular/platform-browser' + ngVer + '/bundles/platform-browser-animations.umd.js', '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic' + ngVer + '/bundles/platform-browser-dynamic.umd.js', '@angular/http': 'npm:@angular/http' + ngVer + '/bundles/http.umd.js', '@angular/router': 'npm:@angular/router' + ngVer + '/bundles/router.umd.js', '@angular/router/upgrade': 'npm:@angular/router' + ngVer + '/bundles/router-upgrade.umd.js', '@angular/forms': 'npm:@angular/forms' + ngVer + '/bundles/forms.umd.js', '@angular/upgrade': 'npm:@angular/upgrade' + ngVer + '/bundles/upgrade.umd.js', '@angular/upgrade/static': 'npm:@angular/upgrade' + ngVer + '/bundles/upgrade-static.umd.js', // other libraries 'rxjs': 'npm:rxjs@5.0.1', 'tslib': 'npm:tslib/tslib.js', 'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js', 'ts': 'npm:plugin-typescript@5.2.7/lib/plugin.js', 'typescript': 'npm:typescript@2.3.2/lib/typescript.js', }, // packages tells the System loader how to load when no filename and/or no extension packages: { app: { main: './main.ts', defaultExtension: 'ts', meta: { './*.ts': { loader: 'systemjs-angular-loader.js' } } }, rxjs: { defaultExtension: 'js' } } }); })(this);
●v4アプリ(upg.ts)
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { Component } from '@angular/core'; import { UpgradeModule } from '@angular/upgrade/static'; @NgModule({ imports: [ BrowserModule, UpgradeModule ], declarations: [ ] }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.body, ['mainModule']); } } platformBrowserDynamic().bootstrapModule(AppModule);