Angular2中Bootstrap界面库ng-bootstrap详解
准备 angular 2 环境
ng-bootstrap 是基于 angular 2 的, 因此需要先准备 angular 2 的环境。
使用 ng-bootstrap
下载 ng-bootstrap
ng-bootstrap 使用 bootstrap 4.0 alpha2 , 因此需要先下载 bootstrap , 推荐使用 npm 包的形式:
npm install bootstrap@4.0.0-alpha.2 --save
接着下载 ng-bootstrap , 同样使用 npm 包的形式:
npm install @ng-bootstrap/ng-bootstrap --save
修改 systemjs.config.js
现在需要修改一下 systemjs.config.js 文件, 让 systemjs 能够正确加载 ng-bootstrap :
// map tells the system loader where to look for things var map = { 'app': 'dist', // 'dist', '@angular': 'node_modules/@angular', 'angular2-in-memory-web-api': 'node_modules/angular2-in-memory-web-api', 'rxjs': 'node_modules/rxjs', // add ng-bootstrap location map '@ng-bootstrap': 'node_modules/@ng-bootstrap' }; // packages tells the system loader how to load when no filename and/or no extension var packages = { 'app': { main: 'main.js', defaultextension: 'js', format: 'amd' }, 'rxjs': { defaultextension: 'js' }, 'angular2-in-memory-web-api': { main: 'index.js', defaultextension: 'js' }, // add ng-bootstrap package config '@ng-bootstrap/ng-bootstrap': { main: 'index.js', defaultextension: 'js' } };
修改 index.html
index.html 文件也要修改一下, 把 bootstrap 的样式表关联进来:
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css"/>
修改 app.component.ts
还需要修改一下 app.component.ts 文件, 导入 ng-bootstrap
的指令:
import { component, oninit } from '@angular/core'; import { http_providers } from '@angular/http'; import { providerouter, router_directives } from '@angular/router'; // import ng-bootstrap directives import { ngb_directives, ngb_precompile } from '@ng-bootstrap/ng-bootstrap'; import { routes } from './app.routes'; @component({ //moduleid: module.id, selector: 'app', providers: [ http_providers ], templateurl: 'dist/app.component.html', styleurls: ['dist/app.component.css'], // ng-bootstrap required precompile directives precompile: [ngb_precompile], // add ng-bootstrap directives to app directives: [ router_directives, ngb_directives ], pipes: [] }) export class appcomponent implements oninit { ngoninit() { } }
ng-bootstrap
以指令 (directive) 的形式提供组件, 方便在 html 视图中使用, 选择器 (selector) 使用同一的前缀 ngb , 类名则统一使用 ngb 前缀。
接下来就可以使用 ng-bootstrap
的组件了, 接下来以 ngbalert 为例说明 ng-bootstrap
的用法。
ngbalert 的 selector 是 ngb-alert , 支持的 input 有 dismissible 和 type , output 有 close 。
接下来看一个 ngbalert 的例子:
<p> <ngb-alert [dismissible]="false"> <strong>warning!</strong> better check yourself, you're not looking too good. </ngb-alert> </p>
显示效果如下:
再来一个稍微复杂一点儿的, 在 app.component.ts 文件中添加下面的代码:
export class appcomponent implements oninit { alert: ialert[]; ngoninit() { this.alert = [ { id: 1, type: 'success', message: 'this is an success alert', }, { id: 2, type: 'info', message: 'this is an info alert', }, { id: 3, type: 'warning', message: 'this is a warning alert', }, { id: 4, type: 'danger', message: 'this is a danger alert', } ]; } closealert(alert: ialert) { const index: number = this.alerts.indexof(alert); this.alerts.splice(index, 1); } } interface ialert { id: number; type: string; message: string; }
在对应的 html 文件中添加 *ngfor
指令, 绑定 alerts
数组:
<p *ngfor="let alert of alerts"> <ngb-alert [type]="alert.type" (close)="closealert(alert)">\{\{ alert.message }} </ngb-alert> </p>
现在得到的效果如下图所示:
ng-bootstrap
还有更多的组件, 就不一一列举了。
总结
实现 ng-bootstrap 的人还是原来做 angular-ui 的那些人, 可以说配方还是原来的配方, 但是这味道么就跟原来有很大的不同了, 完全切换到了 angular2 的风格。
不过总的来说, ng-bootstrap 的推出将会极大的推进 angular 2 在实际项目中的应用, 而不只是停留在 demo 阶段, 因为 angularjs 1.x 时期, 很多项目都是以 angularjs + ui-bootstrap 为基础的, 现在有了 angular 2 的 ng-bootstrap , 相信已经由很多人蠢蠢欲动了吧!以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。
上一篇: php简单静态页生成过程
下一篇: 几个php应用技巧