Angular2のNgIfディレクティブ、スタイルバインディング([style.display])、プロパティバインディング([hidden])を使って、指定したHTML要素を表示、非表示の切替えを行う事が出来ます。
※Angular2の2.0.0版、TypeScriptを使って確認したものです。(デモはv4.4.3、v2.0.0で動作確認)
※目次をクリックすると目次の下部にコンテンツが表示されます。
NgIfディレクティブの概要
●構文
<div *ngIf=”condition”>…</div>
<div template=”ngIf condition”>…</div>
<template [ngIf]=”condition”><div>…</div></template>
例)
<div *ngIf=”condition”>…</div>
<div template=”ngIf condition”>…</div>
<template [ngIf]=”condition”><div>…</div></template>
例)
<p *ngIf="condition"> "condition"がtrueの場合、表示。 </p> <p *ngIf="!condition"> "condition"がtrueの場合、非表示。 </p>
・NgIf=”condition”のconditionがtrueの場合は、<p>~</p>のHTML要素をDOMに追加し、falseの場合はDOMから削除する事によって、表示、非表示を切替える事が出来る。
・NgIfのコンポーネントもdestroyし、イベントリッスン、変更検知も必要なくなるのでリソースの消費は少なくなる。コンポーネントをガベージコレクションし、メモリを開放することができる。
・一方、再度要素を追加する事になった場合は、コンポーネントとそのサブツリーを再生成し、初期化する必要があるので高コストの処理となる。
[style.display]、[hidden]
・要素はDOM内に残したまま非表示にしている。
・非表示の場合は、コンポーネントの振る舞い(イベントのリッスン、データバインディングに関する変更チェックなど)は継続されるので、使わない要素を非表示にしていると余計なリソースを消費してしまう。
・一方、非表示要素を再度表示する場合は高速に実行できる。
1)[style.display](スタイルバインディング)
・cssのdisplay:noneを使用する。
例)
・非表示の場合は、コンポーネントの振る舞い(イベントのリッスン、データバインディングに関する変更チェックなど)は継続されるので、使わない要素を非表示にしていると余計なリソースを消費してしまう。
・一方、非表示要素を再度表示する場合は高速に実行できる。
1)[style.display](スタイルバインディング)
・cssのdisplay:noneを使用する。
例)
<p [style.display]="isVisible ? 'inline' : 'none'"> isVisibleがtrueの場合、"display:inline"のcss設定で表示 </p> <p [style.display]="!isVisible ? 'inline' : 'none'"> isVisibleがtrueの場合、 "display:none"のcss設定で非表示 </p>
2)[hidden](プロパティバインディング)
・HTML要素のhidden属性を使用する。
例)
<p [hidden]="condition"> "condition"がtrueの場合、非表示。 </p> <p [hidden]="!condition"> "condition"がtrueの場合、表示。 </p>
コンポーネント内の属性値に応じて表示、非表示を切替える
下記デモでは、コンポーネント内のage_vとaddress_vのtrue/falseの設定に応じて各メンバーの住所、年齢の表示、非表示を切替えています。
そして、この例では詳細表示部分の1行目の年齢を下記のようにCSSの設定を行っています。
.detail > *:first-child {font-weight: bold}
NgIfディレクティブを使用すると年齢部分のHTML要素が削除され、住所部分の要素が1行目となってしまい、住所が太字表示となってしまいます。
この例では、年齢部分を太字表示にしようとしているので、NgIfディレクティブではなく、[style.display]、[hidden]を使用する必要があります。
そして、この例では詳細表示部分の1行目の年齢を下記のようにCSSの設定を行っています。
.detail > *:first-child {font-weight: bold}
NgIfディレクティブを使用すると年齢部分のHTML要素が削除され、住所部分の要素が1行目となってしまい、住所が太字表示となってしまいます。
この例では、年齢部分を太字表示にしようとしているので、NgIfディレクティブではなく、[style.display]、[hidden]を使用する必要があります。
(CSS設定) styles:[` .detail > *:first-child {font-weight: bold} `], (テンプレート) <ul> <li *ngFor="let member of members">{{member.name}} <ul class="detail"> <li [style.display]="member.age_v ? 'list-item' : 'none'">年齢:{{member.age}}</li> <li [hidden]="member.address_v">住所:{{member.address}}</li> </ul> </li> </ul> (スクリプト) var MEMBERS: Member[] = [ { "name": "相田", "age": 20, "age_v": true, "address": "東京都品川区", "address_v": false}, ・・・
デモ
Angular : 4.4.3(2.0.0でも動作確認済み)
Bootstrap : 3.x
Bootstrap : 3.x
Loading…
<html> <head> <title>Angular 2 Demo</title> <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="./js/systemjs.config.js"></script> <script> System.import('./ts/app.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 class="container"> <my-app>Loading...</my-app> </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);
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { Component } from '@angular/core'; class Member { name: string; age: number; address: string; } @Component({ selector: 'my-app', template:` <strong>1)NgForを使って表を作成</strong> <table class="table"> <thead> <tr><th>名前</th><th>年齢</th></tr> </thead> <tbody> <tr *ngFor="let member of members"> <td>{{member.name}}</td> <td>{{member.age}}</td> </tr> </tbody> </table> <strong>2)NgForのローカル変数を使用</strong> <table class="table"> <thead> <tr><th>No.</th><th>名前</th><th>年齢</th></tr> </thead> <tbody> <tr *ngFor="let member of members; let idx = index; let odd = odd;" [ngClass] = "odd ? 'bg-success' : 'bg-warning'"> <td>{{idx + 1}}</td> <td>{{member.name}}</td> <td>{{member.age}}</td> </tr> </tbody> </table> ` }) export class AppComponent { public members = MEMBERS; } @NgModule({ imports: [ BrowserModule ], declarations: [ AppComponent ], bootstrap: [ AppComponent ] }) export class AppModule { } platformBrowserDynamic().bootstrapModule(AppModule); var MEMBERS: Member[] = [ { "name": "相田", "age": 20 ,"address": "東京都品川区"}, ・・・ ];