detail.component.ts创建模态框组件,我们需要创建一个组件,然后由 ngx-bootstrap-model 帮忙引导启动 对于这个组件需要继承 DialogComponent 类,包含两个参数:

T 外部传参给模态框的类型。

T1 模态框返回值类型。

因此,DialogService应该是DialogComponent的一个构造函数的参数。

implements AlertModel { title: string; message: string; constructor(dialogService: DialogService) { super(dialogService); } }

2.confirm弹框

(1)demo目录

--------app.component.ts --------app.component.html --------app.module.ts --------confirm(文件夹) ------------confirm.component.ts ------------confirm.component.html

(2)demo代码

app.module.ts导入必要的BootstrapModalModule 和ModalModule ,再注册它们,这些都跟alert弹框一样,因为这些都是方法一的弹出方式

app.component.html创建一个可以弹出模态框的按钮

app.component.ts编写这个按钮的动作showConfirm()

{ }); } }

confirm.component.html编写confirm弹框的布局

×

confirm.component.ts创建模态框组件

implements ConfirmModel { title: string; message: any; constructor(dialogService: DialogService) { super(dialogService); } confirm() { // on click on confirm button we set dialog result as true,// ten we can get dialog result from caller code this.close(true); } cancel() { this.close(false); } }

3.内置弹框

(1)demo目录

--------app.component.ts

--------app.component.html --------app.module.ts

(2)demo代码

内置弹框也包括 alert confirm prompt 三种形态,都有一些内置的样式

app.module.ts

app.component.html很简单,就一个按钮

app.component.ts很简单,连组件的布局都不用写,传入一些参数比如图标icon,大小size等

{ content: '保存成功',icon: 'success',size: 'sm',showCancelButton: false }) } }

二、弹出方式二

(此方法来自
)

还是跟上一种方法一样,先安装ngx-bootstrap-modal,然后导入bootstrap样式表

1.demo目录

--------app.component.ts --------app.component.html --------app.module.ts

2.demo代码

app.module.ts导入相应模块,并且注册它们

app.component.ts

){//传入的是一个组件 this.modalRef = this.modalService.show(template,{class: 'modal-lg'});//在这里通过BsModalService里面的show方法把它显示出来 }; }

app.component.html

三、最终效果

我们将上面所有的弹框全部写在一起,然后效果就是这样的

总结

以上所述是小编给大家介绍的Angular弹出模态框的两种方式。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持

angularangular弹出模态框

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...