ngx-bootstrap的官方文档 –
Alerts.
ngx-bootstrap的官方文档 – Modals.
这里提供的API文档和使用场景以及实际示例.
原文链接:https://www.f2er.com/angularjs/142011.htmlngx-bootstrap的官方文档 – Modals.
这里提供的API文档和使用场景以及实际示例.
为了快速参考,我将为您提供一个简单警报框的代码 – 下面的用法和演示:
首先,使用以下方法导入Root模块中的ngx-bootstrap:
import { AlertModule } from 'ngx-bootstrap'; @NgModule({ imports: [AlertModule.forRoot(),...] }) export class AppModule(){}
这里是HTML部分模板:
<alert type="success"> <strong>Well done!</strong> You successfully read this important alert message. </alert>
组件代码如下:
import { Component } from '@angular/core'; @Component({ selector: 'demo-alert-basic',templateUrl: './basic.html' }) export class DemoAlertBasicComponent {}